mpeusa

Members
  • Content count

    2
  • Joined

  • Last visited

Everything posted by mpeusa

  1. Using Jquery Mobile

    My chart will not load when I link to a page without refreshing the page when usin jquery mobile. It will load if I do not use jquery mobile.
  2. Using Jquery Mobile

    Here is the content of my page: <!DOCTYPE html> <html> <head> <title></title> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script> <script src="Charts/FusionCharts.js"></script> <script src="Charts/FusionCharts.jqueryplugin.js"></script> </head> <body> <div data-role="page" data-theme="a"> <div data-role="header"> <a href="index.html" data-icon="home" class="ui-btn-left">Home</a> <h1>Warehouse Revenue - All Sites</h1> <a href="all_ebitda.html" data-icon="next" class="ui-btn-right">Next</a> </div> <div data-role="content" data-theme="d"> <div id="chartContainer"> FusionCharts XT will load here! </div> <script type="text/javascript"> <!-- $(document).ready(function () { $("#chartContainer").insertFusionCharts({ swfUrl: "Charts/MSColumn2D.swf", renderer: "JavaScript", dataSource: "Data/All/all_revenue.xml", dataFormat: "xmlurl", width: "100%", height: "88%", id: "myChartId" }); }); // --> </script> </div> </div> </body> </html>