Reputation: 21
My website crashes in Internet Explorer 9 but works fine in Firefox and Chrome. Homepage loads fine in IE but any post pages crash, for example on my contact page: http://www.poker006.com/2008/02/contact-me.html
I don't know if it's just my version of Internet Explorer or something wrong with the code on my site.
Any ideas? Thanks.
Upvotes: 1
Views: 1464
Reputation: 1131
It's working perfectly fine for me, in IE9:
I would recommend adding a conditional comment to your page:
<!--[if lt IE 8]>
<!--This will alert anyone using IE8 and below-->
<script>
alert("Please Update Your Browser");
</script>
<![endif]-->
You can also redirect them:
<!--[if lt IE 8]>
<!--This will redirect anyone using IE8 and below-->
meta HTTP-EQUIV="REFRESH" content="0; url=http://windows.microsoft.com/en-us/internet-explorer/products/ie/home">
<![endif]-->
Or, of course, both:
<!--[if lt IE 8]>
<!--This will alert & redirect anyone using IE8 and below-->
<script>
alert("Please Update Your Browser");
</script>
meta HTTP-EQUIV="REFRESH" content="0; url=http://windows.microsoft.com/en-us/internet-explorer/products/ie/home">
<![endif]-->
Upvotes: 0
Reputation: 302
It could be an add-on or something you installed for your IE that is causing an issue. Go to your homepage, press F12 for Developer tool, then click on Script and press Start. Go to that URL to see any errors with your page.
Your site looks like it's created with Wordpress. Shouldn't be any major issues with specific browser, or else you will see it.
Upvotes: 0
Reputation: 36229
Check your page with the HTML-Validator. It has 281 errors and 302 warnings.
Upvotes: 2