I am creating an application using jquerymobile framework.
My application works as desired on localhost but once I upload my application on server, Javascript and css does not work and my application user interface and functionalities are being destroyed.
If I replace the javascript and css relative path
<link rel="stylesheet" href="webroot/css/jquery.mobile.css" />
<script src="webroot/js/jquery.js"></script>
<script src="webroot/js/jquery.mobile.js"></script>
to absolute jqueryMobile framework path
<link rel="stylesheet" href="http://jquerymobile.com/test/css/themes/default/jquery.mobile.css" />
<script src="http://jquerymobile.com/test/js/jquery.js"></script>
<script src="http://jquerymobile.com/test/js/jquery.mobile.js"></script>
. It works.
But on localhost the JS and CSS files relative path is working.
Please suggest, where is the bug, in my application or in jqueryMobile js and css files.