[jQuery] Re: form submit on choosing select option

2007-11-06 Thread Eric Martin
On Nov 6, 2:41 pm, "Samuel Vogel" <[EMAIL PROTECTED]> wrote: > Hey guys, > > It seems that I'm unable to make up the right search term for google to find > what I'm looking for: > The eays jQuery way to make my form get submitted as soon as the user > chooses an element from my select box. > > Sho

[jQuery] Re: form submit on choosing select option

2007-11-06 Thread Josh Nathanson
This should do it: $("#myselectid").change(function() { document.formname.submit(); }); -- Josh - Original Message - From: Samuel Vogel To: jquery-en@googlegroups.com Sent: Tuesday, November 06, 2007 2:41 PM Subject: [jQuery] form submit on choosing select option He