JQuery Mobile: Fire Mobileinit Event
Posted
by Yousef_Jadallah
on ASP.net Weblogs
See other posts from ASP.net Weblogs
or by Yousef_Jadallah
Published on Tue, 28 Jun 2011 08:29:00 GMT
Indexed on
2011/06/28
16:23 UTC
Read the original article
Hit count: 392
Many people asked that the Mobileinit event didn't work. Simplicity just you need to follow this sequence:
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css" /> <script src="http://code.jquery.com/jquery-1.6.1.min.js"></script> <script> $(document).bind("mobileinit", function () { alert('mobileinit is fired'); }); </script> <script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
Hope that helps.
© ASP.net Weblogs or respective owner