Should look like this:
$( ).animate({ top: ‘+=px’ }, 500);
Looks like this instead:
$( ).animate({ top: ‘+=px’ , 500 });
Should look like this:
$( ).animate({ top: ‘+=px’ }, 500);
Looks like this instead:
$( ).animate({ top: ‘+=px’ , 500 });
For anyone wondering, this is on Exercise 2, More practice with .animate()