> Form validation works properly but if the fields 
> are ok then the form isn't submitting. 

You want to call the submit method of the form element. Your selector
doesn't look right, there is a space between form and #login. If the form
has an id of login, do this:

$("#login")[0].submit();

The jQuery submit() method calls any submit event handler on the form, but
doesn't submit the form. (Let the debate begin.)




_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to