I have a div tag as
<div class="one two three">foo<div>
<div class="one two four">bar</div>
i am setting the css by using javascript,I can set styles as
.one.two.three{color:red;}
.one.two.four{color:blue;}
But can any one tell me how can i use $(.class).css({"color":"blue"}); for combination of class
$(".one.two.four").css({"color":"blue"});– what's the problem?