$(document).ready(function() { $("#myform").submit(function(form) { {% validate_form form myproject.myapp.forms.FooForm %} }); });]]>
You shouldn’t load the server for testing a form anyway, reactivity is important so use Ajax carefully
Clicking many times is not an issue as the existing container is re-used if it already exists.
The BR is there to make things look good, I don’t now whether there’s better markup…
Thanks for the constructive comment
$(“.error”).fadeOut(“slow”);
This is a bit “light”, you should remove them from the DOM after fading them out. And please remove the br you are using or put it the error class name too.
By the way, it’s a nice and useful idea.
Cheers,
]]>