Re: [jQuery] jQuery form handling

2006-08-11 Thread Larry Garfield
form handling Hey folks. I'm evaluating jQuery for my company, and have a few questions that I've not been able to find answers to in the Docs on the site yet. The major question I have is about form handling. Specifically, does jQuery (either core or a well-supported plugin) provide

Re: [jQuery] jQuery form handling

2006-08-11 Thread Mike Alsup
It was originally written the way you suggested but John rearranged them in svn v97. You'll have to ask him why. But I agree that pre/post is a more natural ordering. Wouldn't it make more sense if it was preCallback then postCallback - ___ jQuery

Re: [jQuery] jQuery form handling

2006-08-11 Thread Andy Matthews
--//- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Larry Garfield Sent: Friday, August 11, 2006 10:35 AM To: jQuery Discussion. Subject: Re: [jQuery] jQuery form handling Hm, spiffy. If I wanted to get an element that didn't have an ID, I should be able to do

Re: [jQuery] jQuery form handling

2006-08-11 Thread John Resig
$('[EMAIL PROTECTED]myfield]')get[0].val(); Nope, what he had was just fine - doing a .val() gets the value of the first element matched. --John ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery form handling

2006-08-11 Thread Andy Matthews
Sent: Friday, August 11, 2006 12:49 PM To: jQuery Discussion. Subject: Re: [jQuery] jQuery form handling $('[EMAIL PROTECTED]myfield]')get[0].val(); Nope, what he had was just fine - doing a .val() gets the value of the first element matched. --John