how to change all body elements' color with a single click in javascript. like;
a.url{
color:#000;
}
div.sample{
color:#000;
}
table td.sample{
color:#000;
}
can i change all color properties of elements to #CCCCCC for example?
I think i have to clear my question. I don't want to change all elements color to target value, i want to change lets say; all blue colors to black. just blue colors, not all of them.