Skip to content

Instantly share code, notes, and snippets.

@benhowdle89
Created October 15, 2013 11:17
Show Gist options
  • Save benhowdle89/6990074 to your computer and use it in GitHub Desktop.
Save benhowdle89/6990074 to your computer and use it in GitHub Desktop.
Forcing browser reflows
var forceReflow = function(el) {
el = el || document.body;
el.style.position = 'static';
setTimeout(function() {
el.style.position = 'relative';
}, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment