Code:
var el = document.getElementById('element-id');
alert(el);
In mozilla if i do
Code:
alert(el instanceof HTMLInputElement)
Code:
alert(el instanceof Object)
How do i detect exact object type in IE?
http://krook.org/jsdom/]this only implemented in Mozilla family? Isn't implemented in IE? How to do it in IE?
Comment