[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-24 Thread hobbit
tyle', 'position:absolute; top:200; left:400; height:145px; width:145px; z-index:2; background- image: url(/sms_sge/App_Themes/smsTheme/Images/loadingAnimation.gif); visibility:inline;'); }); }); trying to limit the call for the change function only for the select statemen

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread hobbit
I wonder if the problem in my application would be the fact that my is actually an ASP.Net DropDownList control that get converted to a at run time? On Sep 21, 12:00 pm, hobbit <[EMAIL PROTECTED]> wrote: > That is interesting. I tried your test page and it also works for me. > I w

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread hobbit
gt; > > > -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] NEWBIE QUESTION: Catch Select event > > Hi, >

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-21 Thread hobbit
That is interesting. I tried your test page and it also works for me. I wonder why it is not working in my application. On Sep 21, 11:14 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > Your code worked for me in IE and FF: > > http://pastie.caboo.se/99419 > > -

[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] NEWBIE QUESTION: Catch Select event

2007-09-20 Thread hobbit
Hi, I would like to catch the select event when a user changes the select item in any in a form. Something like: $("select").select(function() { //do some stuff here... )}; Is this feasible?