get value from radio group using jquery

Try this

var manageradiorel = $("input:radio[name="managerelradio"]:checked").val();
alert(manageradiorel);

Plese check this DEMO ..it will work fine

Note: One of your radio button must be selected. Otherwise it will return undefined

You can use checked attribute to make a radio button selected as default

Leave a Comment