Guest User

Untitled

a guest
Jul 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. function initMenu() {
  2. $('#menu div').hide();
  3. $('#menu div:first').show();
  4. $('#menu li a').click(
  5. function() {
  6. var checkElement = $(this).next();
  7. if((checkElement.is('div')) && (checkElement.is(':visible'))) {
  8. return false;
  9. }
  10. if((checkElement.is('div')) && (!checkElement.is(':visible'))) {
  11. $('#menu div:visible').slideUp('normal');
  12. checkElement.slideDown('normal');
  13. return false;
  14. }
  15. }
  16. );
  17. }
  18. $(document).ready(function() {initMenu();});
Add Comment
Please, Sign In to add comment