Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Testing For Existence ====== <code javascript> // test for the existence of an object before doing anything with it if(typeof someObject == 'undefined'){ alert('someObject does not exist'); }else{ alert('someObject exists'); // check for a specific function before calling it if(someObject.someFunction){ someObject.someFunction(); } } </code> docs/programming/javascript/testing_for_existence.txt Last modified: 2008/08/03 00:25by 127.0.0.1