JSFiddle - React, Tailwind, and code Playground
HTML
<div style="font-size:24px;font-family:Arial" id="myid">Text has ClearType support until show('drop') is called.</div>
JavaScript
//Requires jQuery 1.4.3+ and jQuery UI 1.8.5+
//Reproduced with jQuery/jQueryUI versions
// 1.4.3/1.8.5 and 1.4.4/1.8.7-1.8.9
//Use case
$("#myid").hide();
$("#myid").delay(1000).show('drop');
//End-user solution and/or workaround
$('#myid').delay(1000).show('drop', {}, 'normal', function() {
alert('Workaround/Solution will display after you click ok!')
//http://jquery-howto.blogspot.com/2009/02/font-cleartype-problems-with-fadein-and.html
if ($.support.opacity) return;
this.style.removeAttribute('filter');
});