Every once in a while, Chrome will render perfectly valid HTML/CSS incorrectly or not at all. Digging in through the DOM inspector is often enough to get it to realize the
This solution without timeouts! Real force redraw! For Android and iOS.
var forceRedraw = function(element){ var disp = element.style.display; element.style.display = 'none'; var trick = element.offsetHeight; element.style.display = disp; };