css-ext
v0.0.10
Published
Support grouping for CSS Selector via SPGL
Downloads
3
Maintainers
Readme
CSS-Ext
Have you ever wondered why CSS selectors do not support nested grouping syntax and make your css selectors cumbersome? From now on, you can prevent from using lengthy selectors!
Example
var sel = 'div(.a,#bc.d) (span,form)';
document.querySelectorAll(SPGL.enum(sel, false).join(','));