0
Q:

How to Get Radio Button Value in PHP Without Submit

Foo: 
<input type='radio' name='foo' value='bar'> Bar <br>
<input type='radio' name='foo' value='fru'> Fru 
0
$('input[type=radio]').click(function(e) {
		
        var gender = $(this).val(); 
        $('.result').html(gender);
		
    });
0

New to Communities?

Join the community