We all knows that IE has so many problems in opening html and rendering css files.
I want IE to show nothing when open a page.
How can I do this?
We all knows that IE has so many problems in opening html and rendering css files.
I want IE to show nothing when open a page.
How can I do this?
You can use conditional comments and clear out your page!
<!--[if IE]>
<script>
window.onload = function() {
document.body.innerHTML = 'Please choose a better browser!';
}
</script>
<![endif]-->