> I tried to use "location.href" right after the $().show()
If the animation isn't done then the form isn't showing yet and you probably
can't scroll to an anchor in it. Maybe something like this?
$("p").show("slow",function(){
location.href = "#whatever";
});
The completion function is supported in the latest SVN but if you're using
something older you'd need to make sure it works; put an alert in the
function to be sure.
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/