I wanted to do something like, when I click the radio button it goes to another HTML.
my code:
<div class="FilterNetwork">
<div class="network">
<input type="radio" value="Expertise" unchecked name="radioBtn" onclick="expertise.html"> <label> Expertise</label><br>
<input type="radio" value="Location" unchecked name="radioBtn"> <label> Location</label><br>
<input type="radio" value="Workplace" unchecked name="radioBtn"> <label> Workplace </label><br>
<input type="radio" value="Past Job" unchecked name="radioBtn"> <label>Past Job</label><br>
</div>
</div>