Guest User

Untitled

a guest
Dec 13th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $(function() {
  2. $('.menuToggle').on('click', function() {
  3. $('.menu').slideToggle(300, function() {
  4. if ($(this).css('display') === 'none') {
  5. $(this).removeAttr('style');
  6. }
  7. });
  8. });
  9. });
Add Comment
Please, Sign In to add comment