[jQuery] Re: Submit a form via function call

2008-01-18 Thread Gautam Lad
My jquery.js does say this at this top so I take it its the latest (function(){ /* * jQuery 1.2.1 - New Wave Javascript Mike Alsup <[EMAIL PROTECTED]> wrote: > Trust me I've tried everything. Are you using an older version of jQuery then?

[jQuery] Re: Submit a form via function call

2008-01-18 Thread Mike Alsup
> Trust me I've tried everything. Are you using an older version of jQuery then?

[jQuery] Re: Submit a form via function call

2008-01-18 Thread Gautam Lad
D] On Behalf Of Mike Alsup Sent: January 18, 2008 8:19 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Submit a form via function call > function dosubmit() { > $("myform").submit(); > } Your selector is wrong (forgot the #): function dosubmit() { $("#myform").submit(); }

[jQuery] Re: Submit a form via function call

2008-01-18 Thread Mike Alsup
> function dosubmit() { > $("myform").submit(); > } Your selector is wrong (forgot the #): function dosubmit() { $("#myform").submit(); }