Guest User

Untitled

a guest
Oct 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $("#drawers").parents('ul:first').find('img:first').click(function() {
  2. if ($(this).hasClass('open')) {
  3. $(this).removeClass('open');
  4. $('#info div').slideUp();
  5. }
  6. else {
  7. $(this).addClass('open');
  8. $('#info div').slideDown();
  9. }
  10. });
Add Comment
Please, Sign In to add comment