Skip to content

Instantly share code, notes, and snippets.

@gucheen
Created June 17, 2015 09:40
Show Gist options
  • Save gucheen/db284026272c0abcb37b to your computer and use it in GitHub Desktop.
Save gucheen/db284026272c0abcb37b to your computer and use it in GitHub Desktop.
isDescendant.js
function isDescendant(parent, child) {
var node = child.parentNode;
while (node != null) {
if (node == parent) {
return true;
}
node = node.parentNode;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment