(function ($) { $(document).on('click', '[data-toggle]', function (e) { var id = $(e.target).closest('[data-toggle]').attr('data-toggle'); var $elem = $('#' + id); $elem.toggleClass($elem.attr('data-toggler')); }); $(document).on('click', '.property-dropdown', function (e) { var $this = $(e.target).closest('.property-dropdown'); // close others (not this) var $other = $('.desktop-filter-active').not($this); var $ul = $other.children('ul'); $other.toggleClass('desktop-filter-active'); $ul.toggleClass('hide'); // toggle this $ul = $this.children('ul'); $this.toggleClass('desktop-filter-active'); $ul.toggleClass('hide'); }); })(window.jQuery)