up vote 0 down vote favorite
share [g+] share [fb]

Given a web page that has loaded (possibly several) CSS files, and inline styles, through the use of:

<link rel="stylesheet" type="text/css" href="some_file.css" />
<style type="text/css"> /* some css rules */  </style>
<link rel="stylesheet" type="text/css" href="some_other_file.css" />
<style type="text/css"> /* some other css rules */  </style>      
<!-- etc -->

How would one go about writing a function (possibly with jQuery) to extract all the net CSS rules in effect?

link|improve this question
Extract it into what? The contents of the .css files into a string? – Ken Browning Mar 13 '09 at 2:29
i think he means something like what firebug does – lock Mar 13 '09 at 2:39
Cascaded styles or computed styles? – Crescent Fresh Mar 13 '09 at 4:01
feedback

2 Answers

I am not sure what you want to do with this, but this should get you started:

function getStyles() {
    if(!document.styleSheets) return false; // return false if browser sucks
    var rules = new Array();
    for (var i=0; i < document.styleSheets.length; i++) {
        var x = 0;
        styleSheet = document.styleSheets[i];
        if(styleSheet.cssText) { // if this is IE, get the rules directly
            rules.push(styleSheet.cssText);
        } else {
            // otherwise get them individually
            do {
                cssRule = styleSheet.cssRules[x];
                if(cssRule) rules.push(cssRule.cssText);
                x++;
            } while (cssRule);
        }
    }
    return rules;
}

When you call this it will return an array of all the rules. Tested in Firefox, IE.

link|improve this answer
feedback

Suppose you have a html page loaded with a set of css rules and you want to apply those exact same rules to another page - an .

The first logical thing that came to mind was get all css rules from the original page and somehow setting them to the iframe. Googling brought me here.

What's your opinion, is this the best way for this purpose or is there another?

Thanks and kind regards, Vasko

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.