> I'm surprised there was not a warning that `parent` was undefined. > But maybe there is a global named `parent`.
There is -- it's a reference to the window object that contains this window. For example, if we're code that's running within an IFrame, 'parent' refers to the window object that embeds our containing IFrame. If we're in the 'top' window, parent == window. So there's always a global value for 'parent'. _______________________________________________ Laszlo-user mailing list [email protected] http://www.openlaszlo.org/mailman/listinfo/laszlo-user
