[jQuery] Re: Going thrue all form elements

2008-01-13 Thread Scott González
Use $(':input').each(...) On Jan 12, 6:10 pm, Abdul-Rahman [EMAIL PROTECTED] wrote: Hey guys, I am trying to use the plugin ofhttp://fluidproject.org/blog/2008/01/11/jquery-tabindex-plugin/ to set the tabindexes for my form. I am going through it by querying it as following but it gives

[jQuery] Re: Going thrue all form elements

2008-01-13 Thread Abdul-Rahman
But that would skip all the textarea/select fields... On Jan 13, 3:14 pm, Scott González [EMAIL PROTECTED] wrote: Use $(':input').each(...) On Jan 12, 6:10 pm, Abdul-Rahman [EMAIL PROTECTED] wrote: Hey guys, I am trying to use the plugin

[jQuery] Re: Going thrue all form elements

2008-01-13 Thread Abdul-Rahman
Oeps, Sorry, Works! thnx On Jan 13, 3:14 pm, Scott González [EMAIL PROTECTED] wrote: Use $(':input').each(...) On Jan 12, 6:10 pm, Abdul-Rahman [EMAIL PROTECTED] wrote: Hey guys, I am trying to use the plugin ofhttp://fluidproject.org/blog/2008/01/11/jquery-tabindex-plugin/ to set

[jQuery] Re: Going thrue all form elements

2008-01-13 Thread Mike Alsup
But that would skip all the textarea/select fields... No it won't. It will even include button elements. :input is a jQuery selection expression that finds all form controls. Mike