$('#element').css({'background-color':'none'});
The code above doesn't work. Is there a way to do it?
$('#element').css({'background-color':'none'});
The code above doesn't work. Is there a way to do it?
How about this?
$('#element').css({'background-color':'transparent'});
You can also try
$('#element').css("background-color", "transparent");
Do this:
$('#element').css('background-color','transparent');
or
$('#element').css({ backgroundColor: 'transparent' });
you can use one of these two options (i recommend the second one):
option 1:
$('#element').css('background-color','transparent');
option 2:
$('#element').css('background-color','inherit');