Archive for the ‘Programming’ Category

Dynamically change CSS on body tag with dojo

Tuesday, March 24th, 2009

I searched on the net a quick and dirty way to change the CSS applied to the body tag and I eventually wrote a piace of code cutting and pasting from various sources on the net:


var cssRef = document.createElement("link");
cssRef.href = "mycss.css"
cssRef.rel = 'stylesheet';
cssRef.type = 'text/css';
dojo.query('head')[0].appendChild(cssRef);
dojo.body().setAttribute(”class”,value);