I have a bootstrap Panel and I managed to set the opacity of the body.
<div class="panel panel-default" style="background:none;">
<div class="panel-heading">What is needed to perform activity?</div>
<div class="panel-body" id="needsBody">
Panel content
</div>
</div>
using the css as follow
#needsBody {
background: rgba(255, 255, 255, 0.3) !important;
}
I want to set this the color dynamically using jquery(or javascript) doing it as follow although it doesnt work.
$("#needsBody").css("background", "rgba(175, 201, 99, 0.2) !important;");
How would I go about in doing this effectively?