How to change inline class Style property using javascript/jquery. for example:
<style>
.iexp-info-bar-body {
background-color: #000000;
}
</style>
<div class="iexp-info-bar-body">
//data
</div>
i want to change background-color property of a class .iexp-info-bar-body #000000 to #C04848 .
Please not that i know inline css technique/using !important keyword to change color.
But i want to change all the occurance of a class .iexp-info-bar-body property
ie
i need a result like
<style>
.iexp-info-bar-body {
background-color: #C04848;
}
</style>
<div class="iexp-info-bar-body">
//data
.iexp-info-bar-bodyin your css files?styleelement