There are numerous ways to capitalize the first letter and make the rest lowercase on Stack Overflow. However, I am looking for a method that can instantly enforce this rule in the input field.
Being new to AngularJS, I am currently working with version 1.7.x.
I came across the following code snippet, but unfortunately, it is not functioning as expected.
oninput="this.value = this.value.toUpperCase(0) + this.value.substring(1)"