Jump to content

jquery animations not working in ie


jk11uk

Recommended Posts

According to IE's error console for JS:

{
        duration: 'slow', // how fast we are animating
        easing: 'swing', // the type of easing - THERE IS AN EXTRA COMMA HERE - IE DOES NOT LIKE THIS
    });

 

Also... I noticed this (it isn't an error, but bad practice)

shiftby = eval(""+shiftby+"-60");

 

Why are you using eval here? This works

 

shiftbuy = shiftby - 60;
//Or even this
shiftbuy -= 60;

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.