Reputation: 473
I tried to find out which is a dom object or which is a javascript object
var domObj =document.getElementById('lga');
typeof domObj
"object"
var jsObj = {name:"BP"}
typeof jsObj
"object"
Then how do I identify which is a dom object or js object.
Upvotes: 0
Views: 166
Reputation: 108
I think this should be of help Javascript isDOM - How do you check if a Javascript Object is a DOM Object
This gives a cross-browser way to handle the requirement, at the same time explaining the underlying implementation of common browsers.
I think this should answer your question on how to identify an object
of type HTMLElement
.
Upvotes: 0
Reputation: 77778
You can use
domObj instanceof HTMLElement; // true
It will be false for
jsObj instanceof HTMLElement; // false
In an if
it would look like this
if (domObj instanceof HTMLElement) {
// ...
}
else {
// ...
}
You can learn more about your objects by inspecting their constructor
property
document.body.constructor; // function HTMLBodyElement() { [native code] }
Upvotes: 4