I do not intend to use the fieldset but using a span with radio buttons. Pretty new to html and jquery. I need to change the selected color of the radio button when it is checked. Am i using the wrong elements to show the radio button? Here' s the code:
<div id="sidebar">
<span style="font-weight: bold;">Filter</span><br>
<input backgroundColor="red" type="radio" name="filter" value="schedule">Schedule<br>
<input type="radio" name="filter" value="risk">Risk<br>
<input type="radio" name="filter" value="opm">OPM<br>
<input type="radio" name="filter" value="location">Location<br>
<input background-color="red" type="radio" name="filter" value="all" checked>All<br>
</div>