Hello all,
I am trying to check if a string has white space. I found this function but it doesn't seemt o be working:
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;
}
Btw, I added quotes to RegExp.
Is there something wrong? Is there anything better that I can use? Hopefully JQuery.
Thanks for any help.