dom-tools
Version:
A tiny collection of DOM helpers for IE8+.
17 lines (15 loc) • 352 B
JavaScript
// IE8+
//
// *IMPORTANT:*
//
// According to MDN, "Internet Explorer 8 only supported CSS2 selectors."
//
// Attempt to mirror $(el).find(selector);
//
// http://youmightnotneedjquery.com/#find_children
//
// @return {NodeList}
function find(/* Element */ el, /* String */ selector) {
return el.querySelectorAll(selector);
}
module.exports = find;