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

I try to change the complete CSS code (like a stylebrowser).

First solution

new_css = ' body {color:#00ff00; } #div { border: 1px solid red; }';

$("head > style:eq(1)").html(new_css);

It works fine in the FF, Chrome & Safari ... but not in the the IE.

My second solution

var myStyle = document.styleSheets[1];

if( myStyle.cssRules )
{
    myStyle.insertRule('#dd { display:block; }', 0);            
} 
else
{
    if ( myStyle.rules )
    {
        myStyle.addRule('#dd'', 'display:block;');                  
    }
}

How can I change the complete CSS with the second solution. I found only the single "methods" removeRule, deleteRule, addRule, insertRule.

PS: Or is it maybe possible to use the first solution?

link|improve this question

2  
This is a pretty common IE bug - here's one solution: forum.jquery.com/topic/… – John McCollum Sep 4 '10 at 6:55
feedback

2 Answers

I haven't tested this in all browsers, but I believe that you could prefix all your css with one class per stylesheet, and then just switch the body class?

$("body").attr("class","myTheme2");

This would allow you to load separate stylesheets (myTheme.css, myTheme2.css)

First style:

body.myTheme1{
  background-color:#321212;
}

body.myTheme1 div{
  background-color:#334231;
}

Second style:

body.myTheme2{
  background-color:white;
}

body.myTheme2 div{
  background-color:#889911;
}
link|improve this answer
+1, would do it the same way – Petr Marek Oct 31 '11 at 17:04
feedback

You can also take this approach to it:

$('body').css('color','#00ff00'); $('#div').css('border','1px solid red');

This will set the body and the #div how you intended.

Or an even better solution is to just add those statements into the css, unless you want those to change dynamically having the css there all along is the best solution.

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.