eternalistic
1/24/2015 - 4:46 PM

On click display dropdown and close others

On click display dropdown and close others

/**
* Dropdown menus
*/
  Drupal.behaviors.dropDown = {
    attach: function (context, settings) {
      var dropdown = $('.page-wrapper .dropdown')
      $(dropdown, context).click(function() {
        if($(this).hasClass("active") ) {
          $(this).removeClass("active");
        } else {
          $(dropdown).removeClass("active");
          $(this).addClass("active");
        }
      });
    }
  };