Form Control JavaScript DHTML




function function1() {
    if (myRadioButton1.defaultChecked) {
        alert("Radio 1 is checked");
    }
    if (myRadioButton2.defaultChecked) {
        alert("Radio 2 is checked");
    }
    if (myCheckBox.defaultChecked) {
        alert("Checkbox is checked");
    } 


Radio 1

Radio 2

Checkbox