maybe you look for something similar to
elm.style.hover.color='red'
but this is not implemented in DHTML and probably don't want to use predefined classes with elm.className="class_name" so what about this solution?
elm.jCSS("cssText");
elm.jCSSPseudo("cssText","pseudoElt");
I consider that styling from js is worthy for id (1 element) & for class (more elements) a better solution is CSS.
Since the CSS syntax allows multiple style specification in a string I want to have this opportunity dynamically from js.
SO: let's develop something like elm.jCSSHover("color:red;font-size:24px"):
Element.prototype.jCSSHover=function(txt){// new method for Element
if the element has no id I give one (see bellow the function dinId())
if(!this.id)dinId(this);
I look for the <style> tag and if not exits I create 1
var st=document.getElementsByTagName('style');
if(!st[0]){
st=document.createElement('style')
document.getElementsByTagName('head')[0].appendChild(st)
}
I take the input string, verify has a final ';' and replace all ';' with ' !important;' ....
The word '!important' is very IMPORTANT :)) since js overwrites any pseudo CSS
if(!txt.match(/\w*;$/))txt=txt+';';
txt=txt.replace(/;/g,' !important;');
I place in the <style> #id:hover{}
tn=document.createTextNode("#"+this.id+":hover {"+txt+"}")
st[0].appendChild(tn)
}
All together now and more general for any pseudo styling:
// for dynamic ids
var dinIdContor=0;
function dinId(elm){
if(!elm.id)elm.id="dinId"+dinIdContor++;
}
// for the style tag
mandatoryStyleTag=function(){var st=document.getElementsByTagName('style');
if(!st[0]){
var st=document.createElement('style')
document.getElementsByTagName('head')[0].appendChild(st)
}
}
window.addEventListener('load',mandatoryStyleTag,false)
// the elm.jCSSPseudo() method
Element.prototype.jCSSPseudo=function(cssText,pseudoElt){
if(!this.id)dinId(this);
var ps=pseudoElt||'hover';
if(!cssText.match(/\w*;$/))cssText=cssText+';';
cssText=cssText.replace(/;/g,' !important;');
tn=document.createTextNode("#"+this.id+":"+ps+"{"+cssText+"}")
document.getElementsByTagName('style')[0].appendChild(tn)
}
Now let's use this
a=document.getElementsByTagName('a')
txt="color:red;border:2px solid green";
a[0].style.color="green"
a[0].jCSSPseudo(txt); a
a[0].jCSSPseudo("color;white",'active')
And because I don't really like jQuery for anything I extend the above with
elm.jCSS("string") method
Element.prototype.jCSS=function(txt){
var arg=txt.split(";");
for(var i=0;i<arg.length;i++){
var prop=arg[i].split(':');
var c_prop='';
var x=prop[0].split('-');
for(var v in x){c_prop+=x[v].trim().capitalize()}
this.style[c_prop.smallize()]=prop[1];
}
}
where the String() new methods are:
String.prototype.trim=function (){ return this.replace(/^\s+|\s+$/g,'');}
String.prototype.capitalize=function(){return this.charAt(0).toUpperCase() + this.slice(1);}
String.prototype.smallize=function(){return this.charAt(0).toLowerCase() + this.slice(1);}
The method make corrections for accidental confusions like "fontSize:24px" instead "font-size:24px" in the input string
SO: with the code above we can anytime dynamically change multiple style parameters to any element in the document
elm.jCSS("cssText");
elm.jCSSPseudo("cssText","pseudoElt");