I want to make the ALPHABET title the user entered in the text box if there is a space before it.
The user example writes "test new", so "n" should be capital, and it will be so smooth that it seems like the user has pressed the shift key
I think we can do the same in the keydown (jquery) event
The code is what I tried:
$('.name').live("keydown", function (e) { try { if ($('.name').val().length > 1) { if ($('.name').val().substring($('.name').val().length - 1) == " ") {
Moons source share