Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Last active September 1, 2019 04:13
Show Gist options
  • Save vfontjr/2152f42ef291b1fde96aae0be80855f6 to your computer and use it in GitHub Desktop.
Save vfontjr/2152f42ef291b1fde96aae0be80855f6 to your computer and use it in GitHub Desktop.
Capitalize first letter of Formidable Form field
<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