" Live as if you were to die tomorrow. Learn as if you were to live forever.. "
- Mahatma Gandhi

Select Multiple Radio Button in Aspx Radiobuttonlist

Posted on November 23rd, 2015 by Sibasis Jena

We can select multiple radio button using jquery. Inside document ready function remove the name attribute from each radio button inside the list $(document).ready(function () { $(“#rblIntrestedTechnology input”).each(function () { $(this).removeAttr(“name”); }); }); Put your radiobuttonlist id in place of “rblIntrestedTechnology”