1 2 3 4 5 |
function closeNavByClickingAnywhere(){ $('.js-nkd-tabs').find('[data-state="open"]').each(function(){ $(this).attr('data-state','closed'); }); } |
1 2 3 4 5 |
$(document).on('click', closeNavByClickingAnywhere); $('.js-nkd-tabs').on('click', function(e){ e.stopPropagation(); return false; }); |