dom-elements
dom-elements copied to clipboard
A polyfill for the Elements class in recently added to the DOM Standard, as well as .query and .queryAll methods for Elements, Element, Document, and DocumentFragment.
Results
1
dom-elements issues
Sort by
recently updated
recently updated
newest added
That way you can do things like `new Elements(document.query('#a'), document.query('#b')).queryAll('.c')`. Similar to jQuery's `$('#a').add($('#b')).find('.c')`. Basically any situation where you might programmatically construct a set of elements.