Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. $('.petra-collapse-nav > li.petra_parent_dropdown > a').each(function(){
  2.  
  3. var self = $(this);
  4.  
  5. self.on('click', function(e){
  6.  
  7. e.preventDefault();
  8.  
  9. var current = $(this).parent();
  10.  
  11. if (current.hasClass('petra_dropnav-active')) {
  12. current.removeClass('petra_dropnav-active').closest('li').find('.petra-dropdown-menu').slideUp();
  13. } else {
  14. $.when(
  15. $('.petra_dropnav-active').removeClass('petra_dropnav-active').closest('li').find('.petra-dropdown-menu').slideUp().promise()
  16. ).done(function() {
  17. current.addClass('petra_dropnav-active').closest('li').find('.petra-dropdown-menu').delay(200).slideDown().promise()
  18. });
  19. }
  20.  
  21. });
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement