Stephen Woodbridge schrieb:
> Michael and Brent,
>
> Thank you very much! That was it.
>
> Any idea why that would have been done in the first place?
>
> I ran into another issue that all my for loops in code I added to
> mscross were returning a null objRef at the end of the loop and I had to
> add code to detect that and break out of the loop. This is all a little
> new to me and I'm still learning.
Stephen, as I wrote in the other post, to avoid these problems, you
should use these loops like this:
for (propName in obj) {
if (obj.hasOwnProperty(propName)) {
// do something with property...
}
}
-- Klaus
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/