Skip to content

Instantly share code, notes, and snippets.

@fijimunkii
Last active December 15, 2016 20:25
Show Gist options
  • Save fijimunkii/5fda6077112ab6d1c0a13105b241fa19 to your computer and use it in GitHub Desktop.
Save fijimunkii/5fda6077112ab6d1c0a13105b241fa19 to your computer and use it in GitHub Desktop.
fully supported window resize trigger
try { window.dispatchEvent(new Event('resize')); } catch(e) {
var evt = window.document.createEvent('HTMLEvents');
evt.initEvent('resize', true, false);
window.dispatchEvent(evt);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment