I like the fact that it works with querySelectorAll! This is compatible with my projects in which I do:<p><pre><code> var qsa = function(sel){return document.querySelectorAll(sel)};
</code></pre>
However, it does not work with:<p><pre><code> var subqsa = function(el,sel){return el.querySelectorAll(sel);}</code></pre>