Hi Kevin - getting back to this. I only really need the first name capitalized. What file would I put this JavaScript example that capitalizes the first letter on change?
`<input type="text" id="myInput">
<script>
// Get the input element
const input = document.getElementById('myInput');
// Add an event listener for the 'change' event
input.addEventListener('change', function() {
// Get the current value of the input
const value = this.value;
// Capitalize the first letter
const capitalizedValue = value.charAt(0).toUpperCase() + value.slice(1);
// Update the input value with the capitalized version
this.value = capitalizedValue;
});
</script>
`