<button style="background-color:lightblue" id="extractv">
<b>
Extract<br>v
</b>
</button>
...
$("#extractv").click(function () {
$("#extractv").removeAttr("style");
});
Upon clicking the button, my intention is to remove the background color from it. For some reason, this functionality does not seem to be working as expected.
Sincerely,
Gordon