> if (myObj == 'undefined') myObj = new Object();  I get an error saying the
> object is not defined.

Try this instead:

if (typeof myObj = 'undefined') myObj = {};

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

Reply via email to