> $("#myForm").change(function() {
>     $(this).submit() /* is this correct? */
> })

It would actually be:

$("#myForm").change(function(){
    this.submit();
});

since 'this' refers to the form, it's ok just to call the submit
function right on it.

--John

_______________________________________________
jQuery mailing list
[EMAIL PROTECTED]
http://jquery.com/discuss/

Reply via email to