I'm looking to read CSS values that are not valid such as 'left: 50%-@@this.width;' But of course browsers strip invalid CSS out when they load so it would seem parsing the css before it's loaded would be the only way.
Right now the only solution I can see is to scan all the link and script tags then make an ajax request for the href of the links. This feels sloppy and I get the feeling there must be an easier way to do this. Any help on an easier way to get the raw css would be much appreciated.
I know of lesscss that does similar things to what I am trying to accomplish however I need a library-less solution.
$.get('/path/to/stylesheet.css').done(...)– zzzzBov Nov 29 '12 at 16:14