Please tell me why debounce does not work.
function debounce(func){ var timer; return function(event){ if(timer) clearTimeout(timer); timer = setTimeout(func,300,event); }; } $(window).on("resize",debounce(function(e){ if ($('body, html').width() < 768) { $('.credit-type-list__title').on("click", function() { console.log("click"); $(this).nextAll('ul').children('.item').slideToggle(); $(this).children('img').toggleClass("active"); }); } }));
debounce
used? - Stepan Kasyanenko