Advertisement
Guest User

JavaScript not recognized

a guest
Apr 24th, 2012
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <!-- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -->
  6. <title>Insert title here</title>
  7.  
  8. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
  9. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  10. <script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
  11.  
  12. <script type="text/javascript">
  13. function search(){
  14. var s="keyw="+$("#keyw").val();
  15. jQuery.ajax({
  16. type: "POST",
  17. url: "/maze/search",
  18. data: s
  19. }).done(function(data) {
  20. console.log(data);
  21. $("#list").append(data);
  22. $("#list").listview("refresh");
  23. });
  24. }
  25. </script>
  26. </head>
  27. <body>
  28. <div data-role="content">
  29. <div data-role="fieldcontain">
  30. <fieldset data-role="controlgroup">
  31. <label for="keyw">
  32. </label>
  33. <input id="keyw" placeholder="Search for..." value="" type="text" />
  34. </fieldset>
  35. </div>
  36. <input data-icon="search" data-iconpos="left" value="Search" type="submit" onclick="search()"/>
  37. <div id="results">
  38. <ul id="list" data-role="listview" data-divider-theme="b" data-inset="true">
  39. <li data-role="list-divider" role="heading">
  40. Results
  41. </li>
  42. <li data-theme="c">
  43. <a href="#page2" data-transition="slide">
  44. Button
  45. </a>
  46. </li>
  47. </ul>
  48. <div data-theme="a" data-role="footer" data-position="fixed" data-id="menu">
  49. <div data-role="navbar" data-iconpos="bottom">
  50. <ul>
  51. <li>
  52. <a href="/maze/activity?countryId=2" data-theme="" data-icon="home">
  53. Activity
  54. </a>
  55. </li>
  56. <li>
  57. <a href="/maze/android/settings.jsp" data-theme="" data-icon="gear">
  58. Settings
  59. </a>
  60. </li>
  61. <li>
  62. <a href="/maze/search" data-theme="" data-icon="search">
  63. Search
  64. </a>
  65. </li>
  66. </ul>
  67. </div>
  68. </div>
  69. </div>
  70. </body>
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement