Hello,
I would like to replace :hover with a created class:
in css
in js
it seems not to be the right way?
I would like to replace :hover with a created class:
in css
Code: Select all
.hover
{
border-color: #FFFFFF;
}
in js
Code: Select all
dojo.connect($('p_'+r+'_'+c), "mouseover", function(evt){ dojo.stopEvent(evt); dojo.addClass(node, "hover");});
it seems not to be the right way?