I need to create a capatalization jQuery plugin with the following features:
- Auto capitalize every word
- When the user hits backspace, he can still correct the character for example he types "John Mayer" but he decided, "Mayer" should be without capital letter, so he changes it into "mayer" with backspace.
What I tried so far:
field.on('keyup change', function(e){
var val = field.val();
field.val(val.replace(/^(.)|\s(.)/g, function($1){ return $1.toUpperCase( ); }));
});
The problem is, regex parses the whole value, but only the new characters typed should be parsed.
Thanks for reading
strToUpper()or something similar? – Praveen Kumar Jul 14 '12 at 11:07strToUpper()is PHP - he wants JavaScript. – Utkanos Jul 14 '12 at 11:09inputevent as well, and consideringkeypresswith a 0ms delay instead ofkeyup. It just looks more professional. – Andy E Jul 14 '12 at 12:37