http://jsfiddle.net/8sbt5oua/8/
I would like to get my code only concentrated on a few everytime.
Instead of all of them, who could help me?
<input id="01" type="radio">
<input id="02" type="radio">
<input id="03" type="radio">
<input id="04" type="radio">
<input id="05" type="radio">
<input id="06" type="radio">
var btn = document.getElementById("02");
setInterval(function() {
var list=document.getElementsByTagName("input");
for (i=0;i<list.length;i++) {
btn = list[i];
btn.checked == false ? btn.setAttribute("checked", "checked") : btn.removeAttribute("checked");
}
}, 500);

var btn = document.getElementById("02");?