Hi Community,
Any one can translate this code to the New Form Designer?
"$( document ).ready(function() {
// Run visibility checker on page load
toggleVisibility();
// Runs when the radio button is changed
$( ".radio1" ).change(function() {
toggleVisibility();
});
// Makes button visible if No
function toggleVisibility(){
if ($('input[name="Field1"]:checked').val() == "No"){
$('.radio2 input').prop('checked', false).change();
$('.radio3 input').prop('checked', false).change();
}
}
});"
I'm not good in javascripting.
Thank you