I have a function:
function Check(o)
{
alert(/* o is a DOM element ? "true" : "false" */);
}
How can I check if the parameter o is a DOM object or not?
|
I have a function:
How can I check if the parameter |
||||
|
Check if the Basically check if it is a If you meant it literally when you said So to recap, do either
to check if it is a DOM Element or
to check if it is a DOM Node |
|||||||||||||||
|
|
Instead of just checking for the existence of a property, I'd check its specific value. This assumes you're looking for a "type 1" element.
You could still get an object that has the |
|||
|
|
|
You can use the following function
|
|||||||||
|
tagNamewill give the type of a "type 1" element. There are several other types of nodes. – user113716 Jan 21 '11 at 0:07