On 12/20/06, Todd Menier <[EMAIL PROTECTED]> wrote:
> If anyone cares, here's what I finally resorted to. Thought maybe I could at
> least use $(form.elements) and still apply my filter, but IE doesn't treat
> form.elements as an array, nor does it appear to treat the individual
> elements as true DOM nodes. [...]

In IE the form.elements is a mirror image of the form node itself. If
you need to pass form.elements to $() you can do it this way.

$($.merge([], form.elements));

--
Brandon Aaron

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to