I am working with the <div id="contact">
element and its associated CSS
#contact {
background: url(../images/icon/contact.png) left top no-repeat;
display: inline-block;
width: 29px;
height: 30px;
}
I need to dynamically add a CSS class to the id contact using JSP.
Below is the snippet of the CSS class I want to add to id=contact
dynamically through JSP
.
#contact.active {
background: url(../images/icon/active_contact.png) left top no-repeat !important;
}