Last active
September 1, 2019 04:13
-
-
Save vfontjr/2152f42ef291b1fde96aae0be80855f6 to your computer and use it in GitHub Desktop.
Capitalize first letter of Formidable Form field
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
<script> | |
jQuery(document).ready(function($) { | |
"use strict"; | |
$("#field_xxxxxx").keydown(function () { | |
var _val = $(this).val(), | |
_txt = _val.charAt(0).toUpperCase() + _val.slice(1); | |
$(this).val(_txt); | |
}) | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment