|
|
make first letter capital in javascript - Javascript
|
Views : 766
|
|
Tagged in : Javascript
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Make first letter capital in Javascript:
Use toUpperCase() to make first letter capital.
variable-name.charAt(0).toUpperCase + slice the first letter as string.slice(1)
For eg,
var string = "hscripts.com";
document.getElementById('div').value = string.charAt(0).toUpperCase()+string.slice(1);

|
|
By Ramya, On - 2010-03-01 |
|
|
|