Skip to content

Instantly share code, notes, and snippets.

@sampottinger
Created February 14, 2014 07:35
Show Gist options
  • Save sampottinger/8997165 to your computer and use it in GitHub Desktop.
Save sampottinger/8997165 to your computer and use it in GitHub Desktop.
/**
* Force a redraw on the rendering engine.
**/
function runRedraw()
{
document.body.style.display='none';
document.body.offsetHeight; // no need to store this anywhere, the reference is enough
document.body.style.display='block';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment