Created
December 30, 2023 10:56
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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