Jquery i.e. mistakes ?! animation?
those. being pretty puzzled at mo!
really doesn't know how;
$("#info").delay(500).animate({
'left': "0px",
}, 250 );
may throw erro, but is it? Thinks he's animate but not sure how?
link http://rundell.modernactivity.co.uk/ (line 175-177) works fine in all other browsers.
any help is appreciated ...
+2
a source to share
1 answer
this is because of the trailing comma
try
$("#info").delay(500).animate({
'left': "0px"
}, 250 );
Notice how the comma is removed after "0px" is removed? this will fix your mistake. in the future, remove all trailing commas from hashes because this will blow up IE in the most epic ways.
+4
a source to share