Trying to get the value=\"\" of to change upon selection of a radio button. So if the user
to change upon selection of a radio button. So if the user
Really Simple fiddle.
Using code:
$(document).ready(function(){ $("input[type=radio]").click(function(){ $("#it").val(this.value); }); });
And HTML:
This demonstrates the concept of how to do it.