I\'m experiencing something really strange!
I have a div that I\'m hiding with JS (jQuery). Like this:
$(\'#myDiv\').hide();
Then w
Ok here's my worst solution ever :
<head>
<script>
$(function() {
$(document.body).fadeIn(0);
});
</script>
</head>
<body>
<script>
$(document.body).hide();
</script>
body text
</body>
Immediately hide the body, and fade it in when document is complete. Then you essentially disable cleartype.
Oh and PLEASE dont anybody actaully do this. Or if it REALLY seems to make sense for you then test it well. Just remember you wont see anything until the whole DOM is loaded. I also saw some wierd graphical glitches.