<!-- Squarepaste Form Logic © -->
<script src="https://storage.googleapis.com/squarepaste/base-jquery.js"></script>
<script type="text/javascript">
/* Select Field */
$(document).on('change', '#select-6ed7f446-8ef8-42ea-abf4-e72a84b41cb3-field select', function() {
const value = $(this).val();
if (value == 'Yes') {
$('#section-8ce22bc1-00cb-43c0-b3ab-cccaab43ad22').fadeIn();
}
else {
$('#section-8ce22bc1-00cb-43c0-b3ab-cccaab43ad22').hide();
}
});
/* Radio Field- Hide submit button based on radio button selection and display message */
$(document).on('change', 'input[type="radio"]', function() {
if ($('input[type="radio"][value="No"]:checked').length > 0) {
$('button[type="submit"]').fadeIn();
$('#section-26b8b3d8-8295-42a8-bae3-3f26b85de441').hide();
} else if ($('input[type="radio"][value="No"]:checked').length === 0) {
$('button[type="submit"]').hide();
$('#section-26b8b3d8-8295-42a8-bae3-3f26b85de441').fadeIn();
} else {
$('button[type="submit"]').hide();
}
});
// Trigger the change event on page load to set initial state
$('input[type="radio"]:checked').change();
</script>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter