I am trying to capitalize the first word of each line using jquery.
I have tried the following script:
sentence = sentence.charAt(0).toUpperCase() + sentence.slice(1);
This works fine for the first line, but the rest of the lines are not capitalized. I want the next line's first letter also to be capitalized. This process should continue for the next lines as well.
I think adding the long sentences might work, but I'm afraid if it will put a heavy load on the system. If so, is there any other simple method that can solve this issue?