I have an <object>
with an id
of 'objectID'.
I can modify its position with .css
:
$('#objectID').css({'top': "+=200px"});
But when I use .animate
it won't work:
$('#objectID').animate({'top': "+=100px"}, 1000);
or
$('#objectID').animate({top: "10"}, slow);
Or any other variation, which works on divs. Is there a limitation to animating object
elements?