Skip to content

Instantly share code, notes, and snippets.

@0xnbk
Created December 21, 2010 10:20
Show Gist options
  • Save 0xnbk/749751 to your computer and use it in GitHub Desktop.
Save 0xnbk/749751 to your computer and use it in GitHub Desktop.
Javascript function to check for white spaces.
function hasWhiteSpace(s)
{
reWhiteSpace = new RegExp(/^\s+$/);
// Check for white space
if (reWhiteSpace.test(s)) {
alert("Please Check Your Fields For Spaces");
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment