hi
refer below thread
here I add background color in jquery in the below code:
current = parseInt($this.index() + 1);
var elem = $('a', $this);
elem.stop(true, true).animate({ 'marginRight': '0px', 'opacity': '1.0' }, 300).css("background-color", "#8b0086");
now I want to add font-weight:bold to it so I changed code like:
elem.stop(true, true).animate({ 'marginRight': '0px', 'opacity': '1.0' }, 300).css("background-color", "#8b0086","font-weight", "bold");
but it didn't work
how should I change it
Best regards
Neda