IE incompatibility with JavaScript (surprised?)

Posted by Midevil Chaos on Stack Overflow See other posts from Stack Overflow or by Midevil Chaos
Published on 2013-10-20T03:50:36Z Indexed on 2013/10/20 3:53 UTC
Read the original article Hit count: 150

I am coding my website, and a friend of mine was helping me. This code does not work on IE 10 (Windows 7). I even tried the legacy modes and to no avail. Upon clicking on "services" for example, this code would work on FF or Chrome. But, not on IE. Can someone help me fix this code so it would also work on IE?

$('#services-fr-2').on('click',function(){  
        $( ".clientsFr" ).hide();
        $('.servicesFr').fadeToggle();
        $('#green-pouch-fr').animate({
            'top':'450px'//,
            //'height':'450'
        })

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about internet-explorer