Skip to content

Instantly share code, notes, and snippets.

@mlbd
Created March 1, 2017 06:04
Show Gist options
  • Save mlbd/1ec032f349abc48f96fbb62971420b22 to your computer and use it in GitHub Desktop.
Save mlbd/1ec032f349abc48f96fbb62971420b22 to your computer and use it in GitHub Desktop.
// jQuery
$(window).trigger('resize');
// Javascript
window.dispatchEvent(new Event('resize'));
// Javascript support IE as well
var evt = window.document.createEvent('UIEvents');
evt.initUIEvent('resize', true, false, window, 0);
window.dispatchEvent(evt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment