Question

i use javascript code in project and i want not load this code in lt IE 9. i use this code but its not working:

<!--[if lt IE 9]>
<script type="text/javascript">
....
</script>
<![endif]-->
Était-ce utile?

La solution

<!--[if !lt IE 9]>-->
...
<!--<![endif]-->

You can visit this microsoft article to learn how to build more complex conditional comments

Autres conseils

try this:

<!--[if gte IE 9]>-->
...
<!--<![endif]-->
<!-- Target IE 8 and lower -->
<!--[if lt IE 9]>
    <script type="text/javascript">alert('hello world');</script>
<![endif]-->

So perhaps give this a try:

<!-- Target IE 9 and lower -->
<!--[if lt IE 10]>
    <script type="text/javascript">alert('hello world');</script>
<![endif]-->
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top