Skip to content

Instantly share code, notes, and snippets.

@chrmod
Last active December 21, 2015 10:28
Show Gist options
  • Save chrmod/6291623 to your computer and use it in GitHub Desktop.
Save chrmod/6291623 to your computer and use it in GitHub Desktop.
Disable Jquery Mobile
<script type="text/javascript">
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
$.mobile.linkBindingEnabled = false;
$.mobile.listview.prototype.options.icon = "";
$.mobile.hashListeningEnabled = false;
$.mobile.pushStateEnabled = false;
$.mobile.buttonMarkup.hoverDelay = 0;
$.mobile.button.prototype.options.initSelector = ".jquery-button";
})
</script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment