Home >Web Front-end >HTML Tutorial >Can the small black border that appears after the radio radio button is selected be removed? _html/css_WEB-ITnose
window.onload = function() { var obj = document.getElementsByTagName('input'); for (var i = 0; i < obj.length; i ++) if (obj[i].type == 'radio') obj[i].onclick = function() { this.blur(); }}
Haha, out of focus... I learned the trick
Learned, thank you 1st floor