Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to parse the CSS files that are loaded with an HTML page but I don’t want to make AJAX calls to reload the CSS files that have already been loaded. Is there any way to access the pages unparsed CSS text?

For example, it would allow one to access -moz-* declarations in Safari.

share|improve this question
1  
You want to parse them with what and from where? – Azeem.Butt Dec 16 '09 at 21:57
I want to write a plugin that can gracefully support the CSS3 multiple-background declaration. By scanning the original, unparsed CSS I could find what elements need to have their backgrounds added through another means. Currently, only one CSS background will show up if the browser doesn’t support CSS3 (which defeats the purpose of the plugin). – mazniak Dec 17 '09 at 0:34
So is it a plugin for Safari? A Netscape API plugin? You might be able to use some plugin API modify the stylesheets. – Annie Dec 17 '09 at 0:55

4 Answers

up vote 5 down vote accepted

You could load your CSS using AJAX.

  1. Load your CSS
  2. Parse the CSS
  3. Inject the CSS into the DOM (in full or in part)

This can be done using LazyLoad:

"LazyLoad is a tiny (only 1,541 bytes minified), dependency-free JavaScript library that makes it super easy to load external JavaScript and CSS files on demand."

share|improve this answer
1  
If you follow this method, maybe you may split up your CSS in two: A static CSS file which does not require parsing, and a second one to be loaded through AJAX, and applied after your 'transformation'. – Daniel Vassallo Dec 16 '09 at 22:34
It’s too bad but this seems to be the only way to get ahold of the unparsed CSS source. I’d rather not incur the overhead of having to fetch via AJAX, but sometimes you have to do what you have to do… – mazniak Dec 29 '09 at 16:46

I think you want to look at document.styleSheets.

share|improve this answer
3  
document.styleSheets is the browsers parsed version of CSS. For example, a -webkit-background-clip: border-box; won’t show up at all in Firefox or IE. – mazniak Dec 16 '09 at 22:05

Did you actually try to get it by AJAX? Most likely it will be loaded from browsers cache.

share|improve this answer
Loading by AJAX always results in at minimum an HTTP request having to be sent and returned, plus the time to load the CSS file if the response code is not something like a 304. I really don’t want any extra latency as I want to modify some styles before the page loads. – mazniak Dec 16 '09 at 22:08

Ivan said:

Did you actually try to get it by AJAX? Most likely it will be loaded from browsers cache.

Mazniak said:

Loading by AJAX always results in at minimum an HTTP request having to be sent and returned, plus the time to load the CSS file if the response code is not something like a 304. I really don’t want any extra latency as I want to modify some styles before the page loads

I say... why not just override the styles you want to change? For example:

/* here is your normal css: styles.css */
body {
    color: black;    
}

/* and you want to switch to red text instead... */

/* dynamically add this on page load */
body {
    color: red !important;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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