Skip to content

Instantly share code, notes, and snippets.

@techjewel
Created May 22, 2020 15:35
Show Gist options
  • Save techjewel/1b87e15e47068d91b4ac0f69ef346052 to your computer and use it in GitHub Desktop.
Save techjewel/1b87e15e47068d91b4ac0f69ef346052 to your computer and use it in GitHub Desktop.
Capitalize First Letter of Name Input Field in Fluent Forms
/*
* Add this js snippet in Form's JS box
*/
function capitalizeFLetter() {
var $input = $form.find('.ff-name-field-wrapper').find('input');
$input.on('blur', function() {
var string = $(this).val();
if(string) {
string = string[0].toUpperCase() + string.slice(1);
$(this).val(string);
}
});
}
capitalizeFLetter();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment