nickberens360
7/16/2015 - 2:53 PM

jquery: fake a select box / or, a better toggle

jquery: fake a select box / or, a better toggle

jQuery( document ).ready(function( $ ) {
  
   $( '.js-catList-trigger' ).click(function() {
      $('.js-catList').slideUp();
      $(this).parent().removeClass('catList-is-open');
      
      if($(this).next().is(':hidden')){
         $(this).next().slideDown('fast');
         $(this).parent().addClass('catList-is-open');
      }
      
   }); 
  
});