|
|
|
|
|
by antoineMoPa
3620 days ago
|
|
I like the fact that it works with querySelectorAll! This is compatible with my projects in which I do: var qsa = function(sel){return document.querySelectorAll(sel)};
However, it does not work with: var subqsa = function(el,sel){return el.querySelectorAll(sel);}
|
|