Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var main = function () {
  2.     $('.menu-item').click(function () {
  3.         $('.item').removeClass('active').hide();
  4.         $(this).addClass('active').show();
  5.     });
  6.        
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement