> Unfortunately that doesn't work either. In firebug I get:
> $("#login")[0].submit is not a function
Do you have a form with the id of "login"? If not, use a different selector
to get it. The key is to call the submit method on the underlying DOM object
of the form.
$("selector-to-your-form")[0].submit()
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
