Oh, I just learnt something new :) Ariel Flesler
On 14 ene, 10:35, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > :input will do what you need, but it's slow it's like a $('*') that > > you then apply a complex filter. > > > You can use forms' attribute 'elements' to make it work faster. $ > > ('form').map(function(){ return $.makeArray(this.elements); }); > > ... unless your form contains <input type="image"... /> elements. > For some reason those elements are not included in the form's elements > array! > > Mike