Skip to content

Instantly share code, notes, and snippets.

@highruned
Created January 28, 2014 18:21
Show Gist options
  • Save highruned/8673191 to your computer and use it in GitHub Desktop.
Save highruned/8673191 to your computer and use it in GitHub Desktop.
Reflow Layout
function reflowLayout() {
// Add this arbitrary margin-bottom to force a reflow
$('html').css('zoom', 1.001);
// We need the timeout for this zoom hack to work on all devices
setTimeout(function() {
$('html').css('zoom', 1);
}, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment