Warum funktioniert das Folgende?
<something>.stop().animate(
{ 'top' : 10 }, 10
);
Dies funktioniert jedoch nicht:
var thetop = 'top';
<something>.stop().animate(
{ thetop : 10 }, 10
);
Um es noch deutlicher zu machen: Im Moment bin ich nicht in der Lage, eine CSS-Eigenschaft als Variable an die Animate-Funktion zu übergeben.