jqueryIndex.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
  5. <script src="script.js"></script> <!-- NOTE: </script> end that is seems to be mandatory with script tag -->
  6. <!-- jQuery Mobile files-->
  7. <link rel="stylesheet" href="jquery.mobile-1.0.1.css" />
  8. <link rel="stylesheet" href="jquery.mobile.structure-1.0.1.css" />
  9. <script src="jquery-1.6.4.js"></script>
  10. <script src="jquery.mobile-1.0.1.js"></script>
  11. </head>
  12. <body>
  13. <div data-role="page">
  14. <div data-role="header">
  15. <h4>HTML5 Test App</h4>
  16. </div><!-- /header -->
  17. <div data-role="content">
  18. <h2>Select car of the day</h2>
  19. <ul data-role="listview" data-inset="true" data-filter="false">
  20. <li><a href="#">Volvo V70</a></li>
  21. <li><a href="#">Volvo C70</a></li>
  22. <li><a href="#">Volvo S80</a></li>
  23. </ul>
  24. <a href="#" data-role="button" onclick=processData() data-icon="star">Call C#</a>
  25. </div><!-- /content -->
  26. </div><!-- /page -->
  27. </body>
  28. </html>