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 works for me. Kudos go here.
jQuery.fn.redraw = function() { return this.hide(0, function() { $(this).show(); }); }; $(el).redraw();