Hi guys, I was testing out animate using firebug and as an example, I'm able to move every anchor in the www.jquery.com page by typing this in the console: $("a").animate( { "top": "-=10px"}, "slow" );
But if I go to this other page: http://flowplayer.org/tools/scrollable.html which has jQuery in the header and I type in the same command, I can see the style in the anchors changing in Firebug, but the page stays the same: <a href="/index.html" style="top: -20px;">Home</a> <a href="/index.html" style="top: -30px;">Home</a> <a href="/index.html" style="top: -40px;">Home</a> What am I missing? Thanks, Nacho