Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  2. <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
  3. <script src="//ajax.googleapis.com/ajax/libs/jquerymobile/1.4.3/jquery.mobile.min.js"></script>
  4. <link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
  5. <link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jquerymobile/1.4.3/jquery.mobile.min.css" />
  6.  
  7. // CAPTURE MENU BUTTON CLICK EVENT
  8. // THIS WORKS FINE, BUT ONLY FOR THIS I NEED THE WHOLE jQueryUi AND jQueryMobile ???
  9.  
  10. $( function() {
  11. $( "#aMenuMobile" ).bind( "tap", tapHandler );
  12. function tapHandler( event ){
  13. $("#tdMenuMobile").toggle();
  14. }
  15. });
  16.  
  17. // CAPTURE MENU BUTTON CLICK EVENT
  18. // THIS DOESN"T WORK WELL.
  19.  
  20. $( function() {
  21. $( "#tdMenuPc a, #tdMenuMobile a" ).bind( "tap", tapHandler );
  22. function tapHandler( event ) {
  23. $(window).location(event.target.href());
  24. }
  25. });
  26.  
  27. <td id="tdMenuPc">
  28. <a href="index.php?p=home">ホーム</a>
  29. <a href="index.php?p=german">ドイツ語</a>
  30. <a href="index.php?p=english">英会話</a>
  31. <a href="index.php?p=teacher">先生</a>
  32. <a href="index.php?p=access">アクセス</a>
  33. <a href="index.php?p=inquiry">お問い合わせ</a>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td id="tdMenuMobile">
  38. <a href="index.php?p=home">ホーム</a>
  39. <a href="index.php?p=german">ドイツ語</a>
  40. <a href="index.php?p=english">英会話</a>
  41. <a href="index.php?p=teacher">先生</a>
  42. <a href="index.php?p=access">アクセス</a>
  43. <a href="index.php?p=inquiry">お問い合わせ</a>
  44. </td>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement