Javascript

Topic: JS Functions

How to get value from RadioButtonList control?

Here id is the name property of the RadioButtonListfunction GetRadioButtonValue(id)        {            var radio = document.getElementsByName(id);            for (var ii = 0; ii < radio.length; ii++)            {                if (radio[ii].checked)                    alert(radio[ii].value);            }        }

Browse random answers: