How to set background color in jquery

How to set background color of td in jQuery?

e.g $(this).css({**BackgroundColor:Red**})

Thanks


Solution 1:

$(this).css('background-color', 'red');

Solution 2:

You actually got it. Just forgot some quotes.

$(this).css({backgroundColor: 'red'});

or

$(this).css('background-color', 'red');

You don't need to pass over a map/object to set only one property. You can just put pass it as string. Note that if passing an object you cannot use a -. All CSS properties which have such a character are mapped with capital letters.

Reference: .css()

Solution 3:

How about this:

$(this).css('background-color', '#FFFFFF');

Related post: Add background color and border to table row on hover using jquery

Solution 4:

Try this for multiple CSS styles:

$(this).css({
    "background-color": 'red',
    "color" : "white"
});