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
Sample Html:
Js:
jQuery.fn.redraw = function() { return this.hide(0,function() {$(this).show(100);}); // hide immediately and show with 100ms duration };
call function:
$('article.child').redraw(); //<==bad idea
$('article.child').redraw();
$('#parent').redraw();