I am new to jquery and cannot find out how to add a CSS id to a page element.
For example, here are the inline CSS stlyes:
#main h2 {
background: url(open.png) no-repeat 0% 10%;
padding-left: 20px;
cursor: pointer;
}
#main h2.close {
background-image: url(close.png);
}
#main h2.highlight {
color: red;
font-weight: bold;
text-transform: uppercase;
}
and here is the jquery I attempted:
$(document).ready(function() {
$("h2").addClass('#main h2.highlight');
It works of course with classes but I cannot figure out how to get the styles onto the h2 tag.