On 11/2/06, Dave Methvin <[EMAIL PROTECTED]> wrote:
> Something just occurred to me, maybe Safari is upset trying to convert the
> nodeType to a boolean with the "!" operator. It's saying the value is
> undefined, and that is correct, so maybe we can check directly for
> undefined. Perhaps you could try this instead?
>
> Change
>
>    else if ( arg.length != undefined && !arg.nodeType ) // Handles Array,
> jQuery, DOM NodeList collections
>
> to
>
>    else if ( arg.length != undefined && arg.nodeType == undefined ) //
> Handles Array, jQuery, DOM NodeList collections

I'm going to try this out. I'll post up my findings/test pages/etc as
soon as I have them.

--
Brandon Aaron

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to