vote up 1 vote down star
1

What is the best piece of HTML to put into your website informing certain browser's users that they should upgrade to a different browser?

flag

50% accept rate
Wish huge websites everywhere would do something like that! – fig-gnuton Feb 19 at 19:27
1  
Well, it's happening at EVERY SINGLE LARGE WEBSITE IN NORWAY as we speak :))))))) We're talking about 10 out of the 10 largest websites in the entire country, plus every single "local newspaper website"... ;) – Thomas Hansen Feb 19 at 19:31
Oh come on. We don't need this kind of trolling here. – Rich B Feb 19 at 19:31
Is this question a poorly-disguised ad to drive users to your blog? – JMD Feb 19 at 19:32
Spam, troll, and a vague question: Do you want to know how to detect IE6? do you want to know how HTML works? Be more specific – Kevin Dente Feb 19 at 19:32
show 8 more comments

4 Answers

vote up 8 vote down

As far as I am aware, only IE recognizes conditional & targeted commenting done by:

<!--[if lte IE 6]>
<div id="upgrade"><span>Like a growing number across the Web, this site no longer supports Internet Explorer 6 and your viewing experience may be affected. We recommend that you download the latest stable release of <a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx">Internet Explorer 7</a> free of charge by <a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx">clicking here</a>.</span></div>
<![endif]-->

see: http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx

link|flag
Might want to add a link in the conditional markup to a newer browser. – Jonathan Sampson Feb 19 at 19:38
Right - the html there was just an example. Don't quote that verbatum... ah to hell with it, I'll change it – Chance Feb 19 at 19:40
I like you automatically assumed it was IE 6 :) – Mike Robinson Feb 19 at 21:19
1  
Well IE6 is the most universally hated browser these days... I wouldn't mind eradicating it specifically. Let the Netscape 4 users stick around a little longer... ;-) – Gabriel Hurley Jul 16 at 20:38
vote up 1 vote down

Quite frankly, this is the user's problem, not yours. In reality, many users are not aware of the problem. I would personally use conditional comments to inform IE6 users that an upgrade is available. You could offer alternatives, but let the user make their decision which browser is right for them.

I don't blame you if you don't want to continue support old browsers. Only the current and previous versions of each popular browser should be supported at most. At the end of the day, as long as your text is readable, you've fufilled your obligations.

link|flag
In what way do you think it's horrible? Do you think it goes too far, or not far enough? – Scott Feb 19 at 20:35
vote up 1 vote down

Seems like a waste of time to me.

Correct me if I´m wrong but I think the people who are using IE6 are using it because:

  1. They´re not allowed to change it (company computers), so it´s not likely they can install another browser (instead of updating).
  2. They have an illegal versions of windows that cannot update.

As I have understood, especially the first group is still pretty big so if you want to target these people your web-site should work in IE6 as well. End of story.

Now I realize you are not saying your site does not work on IE6, but annoying messages just turn people away, especially if it´s a message they can do nothing about.

link|flag
And what is the point anyway? It is not exactly difficult to support... – Rich B Feb 19 at 22:29
Well, I do know better ways to spend my time :-) – jeroen Feb 19 at 22:58
vote up 0 vote down
<!--[if IE]><big><blink><marquee>Upgrade to $browser</marquee></blink></big><![endif]-->
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.