0.0.1 • Published 13 years ago
closest v0.0.1
Closest
Similar to jQuery's $.fn.closest and $.fn.parents.
Finds the closest parent that matches a selector.
Installation
$ npm install closestAPI
closest(element, selector, checkSelf)
- element - will check this elements parents
- selector - CSS selector to match parents
- checkSelf - check
element. If falsey, will begin withelement.parentNodeand is synonymous to$.fn.parents. Otherwise, it's$.fn.closest.
Example:
var closest = require('cosest');
closest(document.body, 'html') === document.documentElement
closest(document.body, 'body', true) === document.body
closest(document.documentElement, 'html') == nullLicense
MIT
0.0.1
13 years ago