Skip to content

Instantly share code, notes, and snippets.

@Ascold2017
Forked from agragregra/window-resize-end.js
Created October 24, 2017 13:48
Show Gist options
  • Select an option

  • Save Ascold2017/5cfc02a70be41456aadd24a2e94c9fce to your computer and use it in GitHub Desktop.

Select an option

Save Ascold2017/5cfc02a70be41456aadd24a2e94c9fce to your computer and use it in GitHub Desktop.
Window resize-end function
//Resize Window
function onResize() {
};
var doit;
doit = setTimeout(onResize, 400);
window.onresize = function() {
clearTimeout(doit);
doit = setTimeout(onResize, 400);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment