Skip to content

Instantly share code, notes, and snippets.

@pradeeprjth
Created February 11, 2022 09:53
Show Gist options
  • Save pradeeprjth/7ced727610546da1635b972f5f3d2c41 to your computer and use it in GitHub Desktop.
Save pradeeprjth/7ced727610546da1635b972f5f3d2c41 to your computer and use it in GitHub Desktop.
$('#text').keyup(function () {
var currVal = $(this).val();
$(this).val(currVal.charAt(0).toUpperCase() + currVal.slice(1).toLowerCase());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment