[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-24 Thread hobbit
t; > On Sep 21, 10:01 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > > > > > The change event doesn't fire until the input is blurred (focus moves > > > > away > > > > > from the dropdown via tab-key or mouse click elsewhere). If you want

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread hobbit
If you want to > > > > handle the "changes" to the selected option while they're being changed, > > > try > > > > keydown, keyup, or keypress. > > > > > - Richard > > > > > On 9/21/07, Brook Davies <[EMAIL PROTECTED]&

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread Richard D. Worth
On 9/21/07, hobbit <[EMAIL PROTECTED]> wrote: > > > This does not seem to work for me. Could it be the version of jquery > we are using? We are using an older version, version 1.0.3. Do you > know if this is supported in that version? In my code I changed jquery-latest.js to jquery-1.0.3.js an

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread hobbit
This does not seem to work for me. Could it be the version of jquery we are using? We are using an older version, version 1.0.3. Do you know if this is supported in that version? I tried replacing the "// do some stuff here" line with simply "alert("hello!");", but this alert is not executed w

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread hobbit
to the selected option while they're being changed, > > try > > > keydown, keyup, or keypress. > > > > - Richard > > > > On 9/21/07, Brook Davies <[EMAIL PROTECTED]> wrote: > > > > > I've tried this, but it does not catch change

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread Richard D. Worth
> keydown, keyup, or keypress. > > > > - Richard > > > > On 9/21/07, Brook Davies <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > > > I've tried this, but it does not catch change events trigged by the > > >

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread hobbit
> > -Original Message- > > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > > Behalf Of Andy Matthews > > Sent: September 20, 2007 1:21 PM > > To: jquery-en@googlegroups.com > > Subject: [jQuery] Re: NEWBIE QUESTION: Catch Select eve

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread Richard D. Worth
y Matthews > Sent: September 20, 2007 1:21 PM > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: NEWBIE QUESTION: Catch Select event > > > I believe you'd want the change handler. > > $("select").change(function() { > //do some stuff here... > )};

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread Brook Davies
EWBIE QUESTION: Catch Select event I believe you'd want the change handler. $("select").change(function() { //do some stuff here... )}; -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hobbit Sent: Thursday, September 20, 200

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-20 Thread Andy Matthews
I believe you'd want the change handler. $("select").change(function() { //do some stuff here... )}; -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hobbit Sent: Thursday, September 20, 2007 1:22 PM To: jQuery (English) Subject: [jQuery] NEW