ancestors

0.0.3 • Public • Published

ancestors

browser support

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

Readme

Keywords

none

Package Sidebar

Install

npm i ancestors

Weekly Downloads

1,828

Version

0.0.3

License

MIT

Last publish

Collaborators

  • chrisdickinson