ancestors
v0.0.3
Published
return a list of all of a DOM nodes parents, optionally filtered
Downloads
11,201
Readme
ancestors
return a list of a node's ancestors, optionally filtered with a provided function.
var parents = require('ancestors')
, el = document.getElementById('target')
var p = parents(el)
// [list, of, parent, elements]
var p = parents(el, function(node) { return node.tagName == 'div' })
// [list, of, parent, div, elements]
API
parents(element[, filterFunction]) -> [list of elements]
License
MIT