hi,
does anyone know of a way to modify a css classes' properties using javascript such as this simple style:
<style>
.highlightedCell
{
BACKGROUND-COLOR: RED;
}
</style>
lets say i have some cells in a datagrid that have this class and then i want to change their background color to blue, can i do that by changing the BACKGROUND-COLOR property of the class itself using javascript?
does anyone know of a way to modify a css classes' properties using javascript such as this simple style:
<style>
.highlightedCell
{
BACKGROUND-COLOR: RED;
}
</style>
lets say i have some cells in a datagrid that have this class and then i want to change their background color to blue, can i do that by changing the BACKGROUND-COLOR property of the class itself using javascript?