I’d like to make some effect that after clicking on a link would visualy highlights the form.
Sofar i got
$('#form').addClass("message");
$('#form').animate({backgroundColor: 'ffffff'},3000);
$('#form').animate({opacity:0},3000);
and css for it
.message{
background:#9ed0f2;
}
The point is just to direct the attention of the user to the form.
Are there some out of the box solutions i should look for?
You could even rumble form http://jackrugile.com/jrumble/ 🙂
It is better to create highlight or something css class and animate to this class. This way you separate design from javascript code.
Check http://jqueryui.com/switchClass/ for demo