<!DOCTYPE html>Cats: type="radio" name="pet" id="cats"Dogs: type="radio" name="pet" id="dogs"Click the button below to disable the first radio button above.onclick="disableElement()"Disable Radio Buttonfunction disableElement(){document.getElementById("cats").disabled=true;}