Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Mahendran-Balaji/dbc2dd8f1aa269bdbb600e4ebcf25b64 to your computer and use it in GitHub Desktop.
Save Mahendran-Balaji/dbc2dd8f1aa269bdbb600e4ebcf25b64 to your computer and use it in GitHub Desktop.
Allowed lower case (a-z), Upper Case (A-Z) and one space between the string using jQuery
/* javascript-string-replace-more-space-into-single-space */
$('#blogtitle').bind('keyup blur', function() {
var $th = $(this);
$th.val($th.val().replace(/(\s{2,})|[^a-zA-Z']/g, ' '));
$th.val($th.val().replace(/^\s*/, ''));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment