This question already has an answer here:
- IF IE conditionals not working 5 answers
I am using IE 11 version. Is there any other solution to do the following:
Nothing happens when I try to use conditional IE clause in the html webapge. Can anyone help me debug this issue please.
<!--[if IE]>
<a href="next-page.php" class="start-button">CLICK ME</a>
<![endif]-->
Conditional statements do not work in IE 10 or 11
If you really need to execute code just on those browsers, and you probably shouldn't, you can use JavaScript to do some feature detection as an alterantive.