Categories
How to hide fields depending on the selected delivery?
How to hide and show fields in the checkout form, depending on the selected delivery? (AJAX form)
Answer the question
In order to leave comments, you need to log in
Write a small jquery script. More or less like this:
$("input[name='имя_radio_кнопок']").change(function() { if ($("input[value='1']").prop("checked")) { $(".block1").css("display", "none"); } else { $(".block1").css("display", "block"); } });
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question