Skip to content

Instantly share code, notes, and snippets.

@remoblaser
Created August 12, 2015 11:27
Show Gist options
  • Save remoblaser/33dcfdb2e12803749b3e to your computer and use it in GitHub Desktop.
Save remoblaser/33dcfdb2e12803749b3e to your computer and use it in GitHub Desktop.
Force a DOM Reload if Google Chrome decides to fail on OSX
var forceRedraw = function(element){
var disp = element.style.display;
element.style.display = 'none';
var trick = element.offsetHeight;
element.style.display = disp;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment