Is it possible to get the entire text content of a CSS file in a document? F.ex:
I think your best bet would be to load it with ajax with something like:
$.get("/path/to/file.css", function(cssContent){ alert("My CSS = " + cssContent); });