How can I write the below CSS selector in jQuery. My intention is to get this particular style to work in older IE browsers
CSS:
.classA .classB>.classC .classD {
background-color: red;
}
The following jQuery code does not seem to be working
$('.classA .classB>.classC .classD').css('background-color':'red');
Here is sample html and jquery code to illustare what I am asking for http://jsfiddle.net/58T7C/