Skip to content

Instantly share code, notes, and snippets.

@scepion1d
Last active January 14, 2016 12:20
Show Gist options
  • Save scepion1d/2339453 to your computer and use it in GitHub Desktop.
Save scepion1d/2339453 to your computer and use it in GitHub Desktop.
Cross Browser JS Window Resizing
function doSomething() {
alert("I'm done resizing for the moment");
};
var resizeTimer;
$(window).resize(function() {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(doSomething, 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment