December 2013
Intermediate to advanced
384 pages
9h 54m
English
<script src="../js/jquery-2.0.3.min.js"></script> <script> $(document).bind( "mobileinit", function () { $.mobile.page.prototype.options.headerTheme = "b"; $.mobile.page.prototype.options.footerTheme = "b"; }); </script> <script src="../js/jquery.mobile-custom.min.js"></script>
jQuery Mobile is initialized when the library is loaded. Any page elements with jQuery Mobile tags are initialized as well and use the default settings to create mobile versions of the elements.
Occasionally, you may want to override the default settings. To do this, you need to add a mobileinit event handler to the document object before loading the jQuery Mobile library. Then you ...
Read now
Unlock full access