Tag Archives: JQuery Mobile Framework: How to turn off the Ajax processing the links and form
JQuery Mobile Framework: How to turn off the Ajax processing the links and form
<script type=”text/javascript” src=”http://code.jquery.com/jquery-1.6.4.min.js”></script> <script type=”text/javascript” > $(document).bind(“mobileinit”, function(){ $.mobile.ajaxEnabled = false; }); </script> <script type=”text/javascript” src=”http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js”></script> The order of code inserting is important. The AJAX disabling code must prior to initializing the mobile framework.