Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0-alpha.1/jquery.mobile-1.2.0-alpha.1.min.css" />
  7. <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
  8.  
  9. <script src="http://code.jquery.com/mobile/1.2.0-alpha.1/jquery.mobile-1.2.0-alpha.1.min.js"></script>
  10. <script>
  11. $(document).ready(function() {
  12. $.mobile.loading( 'show', {
  13. text: 'Loading',
  14. textVisible: true,
  15. theme: 'z',
  16. html: ""
  17. });
  18. });
  19.  
  20. <!---- How do I stop the spinner after page has loaded ? Docs state mobileinit = Event indicating that jQuery Mobile has finished loading.--------------->
  21. $( document ).on( "mobileinit", function() {
  22. $.mobile.loading( 'hide');
  23. });
  24.  
  25. </script>
  26. </head>
  27.  
  28. <body>
  29. <!-- /page -->
  30. <div data-role="page">
  31. <!-- /header -->
  32. <div data-role="header">
  33. <h1>Testing loader</h1>
  34. </div>
  35. <!-- /content -->
  36. <div data-role="content">
  37. </div>
  38. </div>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement