JQuery: How to call RESIZE event only once it’s FINISHED resizing?

Here is an example using thejh’s instructions

You can store a reference id to any setInterval or setTimeout. Like this:

var loop = setInterval(func, 30);

// some time later clear the interval
clearInterval(loop);

Leave a Comment