[jQuery] Animate before submit

[jQuery] Animate before submit


Hi,
I'm trying to animate my page before a form is submitted (regular, no
ajax).
$(".advancedSearchForm").submit(function(){
$(".colorList").slideToggle("fast",
function(){
$(this).html("

loading

");
$(this).slideToggle("slow");
}
);
return false;
});
If i end with return false, the animation works fine but the form
never submits.
Whith return true, the animation is skipped and it goes straight to
the submit.
Any clues?