[jQuery] Passing formfield value on blur

2007-01-04 Thread Michael E. Carluen
Hello folks. I'm trying to pull some data after a blur event from a form field (id=idm). Unfortunately, the script below is not working. Any suggestions will be appreciated. Thanks in advance! $(#idm).blur( function() { var params = {$('#idm').val();}; $.ajax({

Re: [jQuery] Passing formfield value on blur

2007-01-04 Thread Michael E. Carluen
).append(response.company_name); } }); }); _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael E. Carluen Sent: Thursday, January 04, 2007 7:22 PM To: 'jQuery Discussion.' Subject: [jQuery] Passing formfield value on blur Hello

Re: [jQuery] Passing formfield value on blur

2007-01-04 Thread Blair McKenzie
:* Thursday, January 04, 2007 7:22 PM *To:* 'jQuery Discussion.' *Subject:* [jQuery] Passing formfield value on blur Hello folks. I'm trying to pull some data after a blur event from a form field (id=idm). Unfortunately, the script below is not working. Any suggestions will be appreciated. Thanks

Re: [jQuery] Passing formfield value on blur

2007-01-04 Thread Michael E. Carluen
Thanks Blair. That was it. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Blair McKenzie Sent: Thursday, January 04, 2007 7:54 PM To: jQuery Discussion. Subject: Re: [jQuery] Passing formfield value on blur First, inside an event you can access the element