Reset multiple Yes/No controls to 'No' using JavaScript

  • 3 May 2017
  • 1 reply
  • 1 view

Badge +3

Does anyone have a JavaScript example showing me how to reset multiple yes/no controls to the default of 'No' using a button? Ta:)


1 reply

Badge +10

Try this one

 NWF$('#'+ jsvControlName).find('input[value='Yes']').attr('checked', false);

Reply