Skip to content

Instantly share code, notes, and snippets.

@nowk
Created February 6, 2012 17:49
Show Gist options
  • Save nowk/1753638 to your computer and use it in GitHub Desktop.
Save nowk/1753638 to your computer and use it in GitHub Desktop.
jQuery.fn.capitalize_word = function() {
$(this).each(function() {
$(this).bind("keyup", function() {
$(this).val($(this).val().toLowerCase().replace(/\b[a-z]/g, function(letter) {
return letter.toUpperCase();
}));
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment