jCSSRule

Usefull fucntions to manipulate CSS rules.
It insert a new style sheet element on the page. It will be inserted where the js code is placed (head or body) and will override other CSS style sheets placed before.

If you better like the jQuery syntaxe, use the jQuery plugin

Background

jCSSRule("body",{ background:xxx });

Title

jCSSRule("h1,h2",{ color:xxx, background:xxx });

Buttons

jCSSRule("button",{ background:xxx });

Reset

jCSSRule("*",null);