Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Faks/e4f1f4d5fb2f063d7e5e692a200c785f to your computer and use it in GitHub Desktop.
Save Faks/e4f1f4d5fb2f063d7e5e692a200c785f to your computer and use it in GitHub Desktop.
jQuery: Capitalize first letter while typing inside input field
<script type="text/javascript" charset="utf-8">
//Capitalize first letter while typing in side of input field
jQuery(document).ready(function($) {
$('#selector').keyup(function(event) {
var textBox = event.target;
var start = textBox.selectionStart;
var end = textBox.selectionEnd;
textBox.value = textBox.value.charAt(0).toUpperCase() + textBox.value.slice(1);
textBox.setSelectionRange(start, end);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment