IE8 doesnt like my jQuery
        Posted  
        
            by danit
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by danit
        
        
        
        Published on 2010-05-04T09:42:05Z
        Indexed on 
            2010/05/04
            9:48 UTC
        
        
        Read the original article
        Hit count: 168
        
jQuery
Can anyone see any reason why IE8 might not run this jQuery?
        $("#slid").toggle(
            function() {
                $("#Silver").animate({top: "25px"}, 200);
            },
            function() {
                $("#Silver").animate({top: "89px"}, 200);
            }
        );
It runs the first function but ignores the 2nd top: "89px" and ideas? Or a better way the same toggle effect can be achieveD?
© Stack Overflow or respective owner