Pergunta

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]-->
Foi útil?

Solução

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

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

Outras dicas

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]-->
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top