Get value of radio button using jQuery
Published under Javascript, jQuery
To get the value of a radio button using jQuery:
var radioButtonValue = $('input[name=sample]:checked').val();
Published under Javascript, jQuery
To get the value of a radio button using jQuery:
var radioButtonValue = $('input[name=sample]:checked').val();