> Don't have an <input name='length'> unless you want a huge,
> nearly undetectable headache in IE. Especially when using the
> deserialize plugin, or just plain $("form [EMAIL PROTECTED]'length']") .
> IE just fails, with no warning as to why.
The problem is that the reference is ambiguous. In the DOM model there is a
form.length, which is the same as form.elements.length, representing the
number of elements inside the form. However, you can also access form
elements using the document.formName.elementName notation. When elementName
is 'length', should it return the intrinsic form.length
(form.elements.length) value, or a reference to the form.length DOM input
element?
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/