123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
- <script src="script.js"></script> <!-- NOTE: </script> end that is seems to be mandatory with script tag -->
- <!-- jQuery Mobile files-->
- <link rel="stylesheet" href="jquery.mobile-1.0.1.css" />
- <link rel="stylesheet" href="jquery.mobile.structure-1.0.1.css" />
-
- <script src="jquery-1.6.4.js"></script>
- <script src="jquery.mobile-1.0.1.js"></script>
-
- </head>
- <body>
- <div data-role="page">
- <div data-role="header">
- <h4>HTML5 Test App</h4>
- </div><!-- /header -->
- <div data-role="content">
- <h2>Select car of the day</h2>
- <ul data-role="listview" data-inset="true" data-filter="false">
- <li><a href="#">Volvo V70</a></li>
- <li><a href="#">Volvo C70</a></li>
- <li><a href="#">Volvo S80</a></li>
- </ul>
- <a href="#" data-role="button" onclick=processData() data-icon="star">Call C#</a>
- </div><!-- /content -->
- </div><!-- /page -->
- </body>
- </html>
|