Skip to content

Instantly share code, notes, and snippets.

@colewinans
Created November 12, 2012 15:05
Show Gist options
  • Save colewinans/4059865 to your computer and use it in GitHub Desktop.
Save colewinans/4059865 to your computer and use it in GitHub Desktop.
Gravity Forms conditionally dependent values in jQuery
$("#input_1_9").change(function() {
if ($(this).val() == "" ) {
$("#input_1_16").val("Other (Non-US)");
} else {
$("#input_1_16").val($(this).val());
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment