July 23, 201412 yr Why am I getting a SyntaxError: identifier starts immediately after numeric literal ? $("#reachme").animate({bottom:'0px'}, -1500px, 'easeOutBounce');
July 23, 201412 yr ^^ Correct, it has to be an integer value, in milliseconds $("#reachme").animate({bottom:'0px'}, 1000, 'easeOutBounce'); This would give the animation a duration of 1s.
July 23, 201412 yr Author The error has disappeared but the effect is not working, odd. As well, the following script has the correct path, checking the HTTP requests the file is being searched for here; path/path/cs_regular_tuts.htm ? $("#tutorials .t").load("webdesignprojects/largeprojects/cs_regular_tuts");
Create an account or sign in to comment