Solved
Auto format phone number for text entry box
My guess is that this will take specific code because I haven't found the feature native in Qualtrics.
Is it possible to auto-format a text entry box?
The exact example I am trying to do is format 10 numbers entered in a text box to a standard phone number format, like 123-456-7890. All I want them to enter is 1234567890.
Best answer by Anonymous
Hello @Akdashboard ,
Use the below code for your requirement. Paste it in the `js(onReady)`
jQuery(".InputText").on("cut copy paste",function(e) {
e.preventDefault();
});
jQuery(".InputText").on('keypress',function(){
if(event.which != 8 && isNaN(String.fromCharCode(event.which))){
event.preventDefault(); //stop character from entering input
}
var s = this.value.replace(/-/g,'');
if(s.length==10){
event.preventDefault();
}
if(s.length!=0){
if(s.length>=3 && s.length<=5){
var s1 = s.slice(0,3);
var s2 =s.slice(3,s.length);
this.value=s1+"-"+s2;
}
if(s.length>=6){
var s1 = s.slice(0,3);
var s2 =s.slice(3,6);
var s3=s.slice(6,s.length);
this.value=s1+"-"+s2+"-"+s3;
}
}
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.