> $().ready(function() {
> $('#orderForm select').change(function() {
> $('#orderForm')[0].submit(); // how about $('orderForm').submit();
?
> });
>});Every element in the form has a .form property that is the containing form object, so you should just be able to say: this.form.submit(); _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
