Skip to content

Instantly share code, notes, and snippets.

@annuman97
Created December 30, 2023 10:56
Show Gist options
  • Save annuman97/f8c8d094d48112dcd423edb7b5bacbe3 to your computer and use it in GitHub Desktop.
Save annuman97/f8c8d094d48112dcd423edb7b5bacbe3 to your computer and use it in GitHub Desktop.
Fluent From address field with Geolocation enabled. Where when users enter the Address Line 1 field all the other field will be filled and disabled for editing.
$(".ff-name-address-wrapper.fluent-address.ff_map_autocomplete input").on('input', function() {
$(".fluent-address :input:not(:focus)").prop("disabled", this.value.length);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment