javascript - How get css rules (class declarations) from stylesheets across all desktop and mobile browsers back to IE8 -
i need class (and nested class) declarations stylesheet in ie8+ modern browsers. in modern browsers easy with:
document.stylesheets[ 0 ][ "cssrules" ];
but doesn't work in ie8. how make work in ie8 (which have document.stylesheets)?
Comments
Post a Comment