I just wanna know how to do an if-statement in simple HTML. Like the [if IE6] thingy

I'd like to do something like this

[IF 5>6]

How's the syntax? I can't seem to find anything but [If!IE6] and things like that, is that even possible?

Thanks a lot

Edit: I want to compare just scalar numbers, cause I have a dynamically created HTML. For example [If 4 == 6]. I DON'T WANT TO CHECK IE VERSIONS.

link|improve this question
1  
Why did you write [if IE6] if you didn't want to compare IE versions? – MrMisterMan Feb 24 at 15:42
1  
HTML is a markup language. Not a programming language. – cadrell0 Feb 24 at 15:54
@MrMisterMan Because she mentions that this is the only kind of "If statement" she could find, even if it's not what she is looking for. To put it this way, if I said I was looking for a Porsche, but Google only turned up results for Volkswagen, that doesn't mean I wanted even more Volkswagen results. ;) – Nix Feb 24 at 16:01
feedback

6 Answers

up vote 4 down vote accepted

Not in HTML. Consider using JavaScript instead.

link|improve this answer
1  
No need for me to add my own answer - but the reason being that HTML is meant to mind markup only, not the logic of which markup to display - any type of logic that determines to show certain markup related to the display of (or hiding of) certain data is to be handled by either Javascript (client-side) or some embedded scripting or compiled server-side code (PHP or C#, for example, embedded within the HTML with special tags) – Mattygabe Feb 24 at 16:05
feedback

No, it's not possible. What you have seen is conditional comments in IE, which only checks version numbers of IE, and is typically used to inject IE specific style sheets to fix CSS bugs for that particular browser.

link|improve this answer
feedback

I believe this is the page you are looking for http://msdn.microsoft.com/en-us/library/ms537512(v=vs.85).aspx

(I typed into google "IE conditional comments". It was the second result.)

link|improve this answer
Indeed, but it's not really what OP is asking for. She just wants do do regular if statements, IE not conditional statements. – Nix Feb 24 at 15:44
@Nix I answered before she clarified that by "I just wanna know how to do an IF in simple HTML. Like the [if IE6] thingy" she actually meant nothing like the [IF IE6] thingy. – MrMisterMan Feb 24 at 15:57
No sweat — I made the same mistake. ;) – Nix Feb 24 at 16:02
From the way the question was posed, it was an unavoidable one :) – MrMisterMan Feb 24 at 16:23
feedback

The <!--[if IE]> syntax only works in Internet Explorer. You'll need to use javascript or css to conditionally display html in other browsers.

link|improve this answer
feedback

If you want to check for browser versions:

<!--[if lt IE 7]>
    <!-- For LOWER than IE7 -->
<![endif]-->

<!--[if IE 6]>
    <!-- For JUST IE6 -->
<![endif]-->

<!--[if gt IE 7]>
    <!-- For HIGHER than IE7 -->
<![endif]-->

Other than that, you cannot use if statements in HTML, as it is a markup language and not a programming language. You need to do it either server side or with Javascript.

link|improve this answer
But I want to compare just scalar numbers, cause I have a dynamically created html. For example [If 4 == 6] – Maggie Fortelli Feb 24 at 15:40
Ah, my mistake. No, that is not possible. You need to do it either server side or with Javascript. Sorry. – Nix Feb 24 at 15:41
@MaggieFortelli I'm confused. How are you defining the two numbers you want to compare? – Howdy_McGee Feb 24 at 15:42
feedback
[If lte IE 6]

This selects IE 5, 5.5 and 6. It's the closest to what you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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