HELP, please!?
Would like a radio button to be selected based on the same value as a drop down field using javascript.
Can't seem to get it to work. Could someone please take a look and tell me what am i missing? Much appreciated!
$(document).ready(function () {
$("#q140").on("change", function() {
var value = $(this).val();
$('.myradio').find($('input[value="' + value + '"]')).attr('checked', true);
});
});