Return to Snippet

Revision: 6351
at May 18, 2008 11:09 by Juego


Initial Code
function doSomething() {
    alert("I'm done resizing for the moment");
};

var resizeTimer = null;
$(window).bind('resize', function() {
    if (resizeTimer) clearTimeout(resizeTimer);
    resizeTimer = setTimeout(doSomething, 100);
});

Initial URL
http://groups.google.com/group/jquery-en/browse_thread/thread/4a00d513c63f5c00

Initial Description


Initial Title
jQuery - Window on Resize event

Initial Tags
jquery

Initial Language
JavaScript