Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $(function() {
  2. $("li.dropdown").hover(
  3. function() {
  4. if ($('.open').length !== 0) {
  5. $('.open').removeClass('.open');
  6. $(this).addClass('open');
  7. }
  8. }
  9. );
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement