Skip to content

Instantly share code, notes, and snippets.

@lvl-svasseur
Last active December 28, 2015 20:09
Show Gist options
  • Save lvl-svasseur/7555138 to your computer and use it in GitHub Desktop.
Save lvl-svasseur/7555138 to your computer and use it in GitHub Desktop.
Force Repaint
/**
* source : http://stackoverflow.com/questions/3485365/how-can-i-force-webkit-to-redraw-repaint-to-propagate-style-changes
*/
sel.style.display='none';
sel.offsetHeight; // no need to store this anywhere, the reference is enough
sel.style.display='block';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment