Skip to content

Instantly share code, notes, and snippets.

@sugarshin
Created March 5, 2014 03:45
Show Gist options
  • Save sugarshin/9360786 to your computer and use it in GitHub Desktop.
Save sugarshin/9360786 to your computer and use it in GitHub Desktop.
isElement
function isElement(e) {
if (e && e.nodeType === 1) {
try {
e.nodeType = e.nodeType;
} catch(n) {
return true;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment