Advertisement
Guest User

Untitled

a guest
Jul 5th, 2011
691
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  6. <meta name="apple-mobile-web-app-capable" content="yes" />
  7. <META HTTP-EQUIV="Expires" CONTENT="-1">
  8.  
  9. <script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
  10. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css" />
  11. <script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
  12.  
  13. <link href="styles.css" rel="stylesheet" type="text/css" />
  14. </head>
  15.  
  16. <body>
  17.  
  18. <div data-role="page" id="A">
  19. <div data-role="header" data-position="fixed" data-id="my-header">
  20. <h1>PAGE A</h1>
  21. </div>
  22. <div data-role="content">
  23. CONTENT: <a href="#B">PAGE B</a>
  24. <br/>CONTENT: <a href="#B?b=1">PAGE B1</a>
  25. <br/>CONTENT: <a href="#B?b=2">PAGE B1</a>
  26. </div>
  27. <div data-role="footer" data-id="my-tabs" data-position="fixed" class="footer-bar">
  28. FOOTER
  29. </div>
  30. </div>
  31.  
  32. <div id="B" data-role="page">
  33. <div data-role="header">PAGE B</div>
  34. <div data-role="content"><a href="#A">BACK</a></div>
  35. <div data-role="footer">FOOTER B</div>
  36. </div>
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement