Phone Number Validation
Posted: Fri Jan 19, 2018 6:54 am
Ok, I have been trying to guess where to place this javascript script.
I have a editbox with a id = Phone. I have this javascript code that I trying to test. My problem is I am not sure where to place the javascript script . Do I place it in the form. I think not, So I placed it in the Page Html, at the end of page.
Here's the script.
function formatPhone(num) {
var str = num.toString();
alert(str);
var matched = str.match(/\d+\.?\d*/g);
// 10 digit
if (matched.length === 3) {
return '(' + matched[0] + ') ' + matched[1] + '-' + matched[2];
// 7 digit
} else if (matched.length === 2) {
return matched[0] + '-' + matched[1];
}
// no formatting attempted only found integers (i.e. 1234567890)
else if (matched.length === 1) {
// 10 digit
if (matched[0].length === 10) {
return '(' + matched[0].substr(0, 3) + ') ' + matched[0].substr(3, 3) + '-' + matched[0].substr(6);
}
// 7 digit
if (matched[0].length === 7) {
return matched[0].substr(0, 3) + '-' + matched[0].substr(3);
}
}
// Format failed, return number back
return num;
}
And here's the problem I tried placing an alert(str) just to see if the value is being sent to the function properly on a changed event, but when the alert is displayed, I get:
[object HTMLInputElement] ??
and not the value of num which I am passing to it from the onchange event of the editbox Phone, I select javascript function from the action dropdown and put in the javascript line formatPhone(Phone)
Any clue as to why the value of Phone is not being passed to the function, formatPhone ????
Any assistance will be appreciated..
The user guide does not clearly tell me the difference in the condition using the change feature vs the event using the onchange event??
Can anyone clarify the differences?
Thanks
I have a editbox with a id = Phone. I have this javascript code that I trying to test. My problem is I am not sure where to place the javascript script . Do I place it in the form. I think not, So I placed it in the Page Html, at the end of page.
Here's the script.
function formatPhone(num) {
var str = num.toString();
alert(str);
var matched = str.match(/\d+\.?\d*/g);
// 10 digit
if (matched.length === 3) {
return '(' + matched[0] + ') ' + matched[1] + '-' + matched[2];
// 7 digit
} else if (matched.length === 2) {
return matched[0] + '-' + matched[1];
}
// no formatting attempted only found integers (i.e. 1234567890)
else if (matched.length === 1) {
// 10 digit
if (matched[0].length === 10) {
return '(' + matched[0].substr(0, 3) + ') ' + matched[0].substr(3, 3) + '-' + matched[0].substr(6);
}
// 7 digit
if (matched[0].length === 7) {
return matched[0].substr(0, 3) + '-' + matched[0].substr(3);
}
}
// Format failed, return number back
return num;
}
And here's the problem I tried placing an alert(str) just to see if the value is being sent to the function properly on a changed event, but when the alert is displayed, I get:
[object HTMLInputElement] ??
and not the value of num which I am passing to it from the onchange event of the editbox Phone, I select javascript function from the action dropdown and put in the javascript line formatPhone(Phone)
Any clue as to why the value of Phone is not being passed to the function, formatPhone ????
Any assistance will be appreciated..
The user guide does not clearly tell me the difference in the condition using the change feature vs the event using the onchange event??
Can anyone clarify the differences?
Thanks