javascript - what would be the sequence of script tag while using .js files of coredova and jQuery? -
<!-- libraries js files start--> <script src="jquery.mobile/jquery-1.8.3.min.js"></script> <script src="jquery.mobile/custom-scripting.js"></script> <script src="jquery.mobile/jquery.mobile-1.3.0-rc.1.min.js"></script> <script type="text/javascript" src="javascripts/libs/prototype.js"></script> <script type="text/javascript" src="javascripts/libs/cordova-2.2.0.js"></script> <script type="text/javascript" src="javascripts/libs/googlecharts.js"></script> <script type="text/javascript"> google.load('visualization', '1', {'packages':['corechart']}); </script>
when utilize not show me graphs , gives datatable error
probably custom-scripting.js
of jquery mobile need core script first, alter order to:
<script src="jquery.mobile/jquery-1.8.3.min.js"></script> <script src="jquery.mobile/jquery.mobile-1.3.0-rc.1.min.js"></script> <script src="jquery.mobile/custom-scripting.js"></script>
javascript android cordova
No comments:
Post a Comment