jquery mobile number only keypad for iPad and iPhone January 17, 2016 <input type= "number" min= "0" inputmode= "numeric" pattern= "[0-9]*" title= "Non-negative integral number" > source http://danielfriesen.name/blog/2013/09/19/input-type-number-and-ios-numeric-keypad/ Read more
JQuery mobile validate while navigating from page to page January 10, 2016 /** call validatePage() on the current page and it will trigger the form validation for this page */ function validatePage(){ return $("#form id").valid(); } Read more
JQUERY MOBILE 1.4.5 popup issue resolving January 03, 2016 add this script before the jquery.mobile-1.4.5.min.js <script src="resources/js/jquery-2.1.4.min.js"></script> <script type="text/javascript"> $(document).bind("mobileinit", function(){ $.mobile.hashListeningEnabled = false; }); </script> <script src="resources/js/jquery.mobile-1.4.5.min.js"></script> Read more