Usage
Syntax: isobject(obj object);
Returns true or false.
Explanation
Checks whether the given object exists. Returns TRUE if it does, and FALSE otherwise.
Example
function onCreated()
{
if (isObject(this.obj))
{
this.obj.destroy();
}
}Categories
CategoryFunctionClientside
CategoryFunctionServerside