In web application. i have a user registration form, in that form when user enter his name the first letter of his name automatically first letter of his name convert into capital is there any script or any logic for this requirement. Thank you.
I write Javascript But it is giving error like Microsoft JScript runtime error:
Microsoft JScript runtime error: Object doesn't support this property or method
function capitaliseFirstLetter(obj)
{
return obj.charAt(0).toUpperCase() + obj.slice(1);
}
<input type ="text" id ="txt" onkeyup ="capitaliseFirstLetter(this)" />