hope someone can help me.

Example-Code

    <style title="css_style" type="text/css">
    body {
      background-color:#dc2e2e;     /* <- CHANGE THIS */
      color:#000000;
      font-family:Tahoma, Verdana;
      font-size:11px;
      margin:0px;
      padding:0px;
      background-image: url(http://abc.de/image.jpg);
    }
    </style>

    ...

    <body>
       // ....
    </body>

JQuery

$('body').css('background-color','#ff0000');

Result

<body style="background-color:#ff0000;">
   // ....
</body>

My problem is that jquery add the style to the body tag, but i want to change the value in the style tag. Is this with jquery possible?

link|improve this question

1  
try $('style').text(...new definition...) -- haven't tested though; I don't know any jQuery automation for this. – Piotr Findeisen Nov 20 '10 at 11:52
1  
Give the style tag an id and call using its id. Something like: $('#{id}').attr('style', 'background-color:#ff0000;'); – Carnotaurus Nov 20 '10 at 11:57
feedback

5 Answers

up vote 6 down vote accepted

The are specific methods for manipulating stylesheets,

DOM: insertRule()
Microsoft: addRule()

I just made a method for jQuery(maybe somebody else already did, I don't know)

(
function( $ )
{
  $.style={
          insertRule:function(selector,rules,contxt)
          {
            var context=contxt||document,stylesheet;

            if(typeof context.styleSheets=='object')
            {
              if(context.styleSheets.length)
              {
                stylesheet=context.styleSheets[context.styleSheets.length-1];
              }
              if(context.styleSheets.length)
              {
                if(context.createStyleSheet)
                {
                  stylesheet=context.createStyleSheet();
                }
                else
                {
                  context.getElementsByTagName('head')[0].appendChild(context.createElement('style'));
                  stylesheet=context.styleSheets[context.styleSheets.length-1];
                }
              }
              if(stylesheet.addRule)
              {
                for(var i=0;i<selector.length;++i)
                {
                  stylesheet.addRule(selector[i],rules);
                }
              }
              else
              {
                stylesheet.insertRule(selector.join(',') + '{' + rules + '}', stylesheet.cssRules.length);  
              }
            }
          }
        };
  }
)( jQuery );

Example usage:

$.style.insertRule(['p','h1'], 'color:red;')
$.style.insertRule(['p'],      'text-decoration:line-through;')
$.style.insertRule(['div p'],  'text-decoration:none;color:blue')

the second argument should be clear, the rules. As optional 3rd argument the context-document can be supplied.
The first argument are the selectors as array-elements.
Note that you dont have to use there different selector separated by comma, as MSIE only accepts "Single contextual selectors" as argument for addRule()

Check out the fiddle: http://jsfiddle.net/doktormolle/ubDDd/

link|improve this answer
thank you very much for this ! – h4ck3rm1k3 Feb 15 at 18:51
feedback

While not changing an existing style element, this works as a cross-browser way to create a new one:

$( "<style>body { background: black; }</style>" ).appendTo( "head" )

By cascading, it'll override existing styles, which should do the trick.

link|improve this answer
1  
Best, cleanest answer. Tested it in Chrome and IE8 (in IE7 mode). My only change is appendTo("head"), instead of "body", since style tags should only be included in the head (unless, of course, the HTML5 "scoped" attribute is included on the style tag, but since this is not supported by any browsers at the moment, we can ignore this option). – Earl Jenkins Feb 15 at 19:49
@EarlJenkins I've updated it to say appendTo("head"), thanks for pointing that out. – Jörn Zaefferer Feb 22 at 18:58
feedback

You can change your body class but you cannot change your style tag:

<style title="css_style" type="text/css">
.highlight
{
    background-color:#ff0000;   
}
</style>

$('body').toggleClass("highlight");
link|improve this answer
In CSS highlight has to have the class-selector .: .highlight { .. } – pex Nov 20 '10 at 12:30
feedback

Jquery always adds its css in the tag itself.

I think you should use the append() with a new body style rule.

Like this:

var newRule = "body{ /*your css rule here...*/ }";
$("style").append(newRule);

or

$("body").css({ /*css rule...*/ });

I hope this is what you meant...

link|improve this answer
feedback

Please elaborate on why it matters where the style is added. Maybe we can provide an alternative solution to your problem.

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.