Relatively inexperienced.  I'm creating a dashboard using some of the
Google visualizations.  Want to do a selective refresh of certain
pieces of the dashboard based on user action (rather than a full page
reload).

Was hoping to use jquery for this, but when I try to use in
combination with the Google visualization (in this case, the intensity
map) it just says "Transferring data from www.google.com..." and
continues to run without completing.  Any help would be greatly
appreciated.

Here is the code:

<html xmlns="http://www.w3.org/1999/xhtml"; >
<head runat="server">
<title>Test JQuery Div Load</title>
<link rel="stylesheet" href="/css/jquery/ui/smoothness/ui.theme.css"
type="text/css" media="all" />
<script type='text/javascript' src='http://www.google.com/jsapi'></
script>
<script src="/js/jquery-1.3.2.js" type="text/javascript"></script>
<script src="/js/jquery.ui.all.1.7.2.min.js" type="text/javascript"></
script>
<script type="text/javascript">
        jQuery.noConflict();
    </script>

 <script type="text/javascript">
    jQuery(document).ready(function() {
        jQuery("#UsageMap").load("UsageMap.aspx");
    });
</script>

</head>
<body>

<div id="UsageMap" >
  <p>This should get replaced with content from UsageMap.aspx</p>
</div>
</body>
</html>

Reply via email to