Re: [jQuery] Re: keyup on textfields

2009-11-03 Thread Denis Caggiano
Actually, I need only 4 text fields to trigger the function and I have 10. :) But tks for the hint.

Re: [jQuery] Re: keyup on textfields

2009-10-31 Thread Karl Swedberg
Or, if the OP really wants all text fields to trigger it, he could just use $(':text').keyup( ... ) --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 30, 2009, at 3:20 PM, James wrote: There are a few simple ways to do this. Here are probably the most c

Re: [jQuery] Re: keyup on textfields

2009-10-30 Thread Denis Caggiano
Tks James, You help me to write a clean code.