Hello,
I have this scenario:
There are 3 fields in play:
Field137: Type = RadioButton, depending upon the selection 2 other fields appear for text which are 138 & 187
Now, depending upon the selection of RadioButton, the text is entered & I want this value to be in another field with some other text.
I try to express in the form I think should work, but not very sure...
var AValue = function (){
if($('#q137 select').val() == 'Anz. Arbeitstage'){
$('#q268 input').val('in the (Field138) here');
}
else if($('#q137 select').val() == 'Enddatum bis'){
$('#q268 input').val('on mark (Field187) now');
}
}
$('#q214').on('blur change', AValue);