jquery ie errors?! animate?
ie being quite baffling at the mo!
really domn't know how;
$("#info").delay(500).animate({
'left': "0px",
}, 250 );
can throw an erro but it does开发者_运维知识库? Thinks its the animate but not sure how?
link http://rundell.modernactivity.co.uk/ (line 175-177) works fine in all other browsers.
any help welcome...
it is because of the trailing comma
try
$("#info").delay(500).animate({
'left': "0px"
}, 250 );
notice how the comma after "0px" is removed? this will fix your error. in the future, remove all trailing commas from hashes because it will blow up IE in most epic ways.
精彩评论