☀ Check out our new pay-what-you-want Webflow portfolio template — Exhibit
Guides
snippets
Toggle Input Field Visibility Base...

Toggle Input Field Visibility Based on Form Select Option

November 22, 2022

$(document).ready(function () {
  $("#my-select").change(function () {
    var selected = $(this).val();

    $('input[id="' + selected + '"]').hide();
    $('input[id="' + selected + '"]').show();
  });
});