vote up 1 vote down star

In html you can include a file (such as a script or styletsheet) using for example. Is there a way to do 'if not', so I could include the file for all browsers except one?

flag

50% accept rate
Except what browser? IE? See msdn.microsoft.com/ms537512.aspx – Gumbo Aug 4 at 9:04

1 Answer

vote up 3 vote down check

<!--[if !(IE 7)]><p>You are not using version 7.</p><![endif]-->

link|flag
that simply huh, thanks! – chrism Aug 4 at 9:10
Not a problem. Basically the ! sign means 'not' in various programming contexts. – Karan Bhangui Aug 4 at 9:36
Problem being that this says "if you're an Internet Explorer other than version 7", as all other browsers will just see an HTML comment and ignore it. Is that actually what was asked for by "all other browsers"? – deceze Aug 4 at 10:41
See this answer for a way to hide things from specific IE versions, but show them in all other browsers: stackoverflow.com/questions/1204505/… – deceze Aug 4 at 10:43

Your Answer

Get an OpenID
or

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