Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <html>
  2. <head>
  3. <!-- HERE YOU CAN ADD ALL YOUR INCLUDES -->
  4. <head>
  5. <body>
  6.  
  7. <!-- This page will show first -->
  8. <div data-role="page" id="index">
  9.  
  10. <div data-role="header" data-position="inline" id="indexheader" >
  11. <h1>Page 1 Heading</h1>
  12. </div><!-- /header -->
  13.  
  14. <div data-role="content">
  15. <h3>page Content</h3>
  16. </div><!-- /content -->
  17.  
  18. <div data-role="footer" data-position="fixed">
  19. <h3>Footer Text</h3>
  20. </div><!-- /footer -->
  21.  
  22. <!-- SECOND PAGE -->
  23. <div data-role="page" id="pagetwo">
  24.  
  25. <div data-role="header" data-position="inline" id="page2header" >
  26. <h1>Page 2 Heading</h1>
  27. </div><!-- /header -->
  28.  
  29. <div data-role="content">
  30. <h3>page Content</h3>
  31. </div><!-- /content -->
  32.  
  33. <div data-role="footer" data-position="fixed">
  34. <h3>Footer Text</h3>
  35. </div>
  36.  
  37. <!-- THRIRD PAGE -->
  38. <div data-role="page" id="pagethree">
  39.  
  40. <div data-role="header" data-position="inline" id="page3header" >
  41. <h1>Page 3 Heading</h1>
  42. </div><!-- /header -->
  43.  
  44. <div data-role="content">
  45. <h3>page Content</h3>
  46. </div><!-- /content -->
  47.  
  48. <div data-role="footer" data-position="fixed">
  49. <h3>Footer Text</h3>
  50. </div>
  51. </div>
  52. </body>
  53. </html>
  54.  
  55. $.mobile.changePage($('#pagetwo')); /*page navigation the particular where data shown*/
  56. $("#index").trigger("pagecreate"); /*This is like a page refresh in jquery*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement