I'm making an auto slider with CSS, HTML, js I want to change checked value input type="radio" with time change...
<div id="slide">
<input type="radio" name="pos" id="pos1" checked>
<input type="radio" name="pos" id="pos2">
<input type="radio" name="pos" id="pos3">
<input type="radio" name="pos" id="pos4">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<p class="pos">
<label for="pos1"></label>
<label for="pos2"></label>
<label for="pos3"></label>
<label for="pos4" checked></label>
</p>
</div>