Telephone Formatting?? - Post ID 277204

User 187934 Photo


Senior Advisor
20,188 posts

Your welcome ;)
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 332337 Photo


Registered User
120 posts

Eric,

Your script is GREAT - thought I would share the form with you. http://www.trapperschicken.com/

It also includes areas that show only if you select catering. Nice piece of software, AMAZING group support!
User 187934 Photo


Senior Advisor
20,188 posts

The form builder really is an amazing app. To think back about the flash version now.:lol:
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 516429 Photo


Registered User
83 posts

Really like the script . How would I use it if I have multiple phone numbers to input on the form? Thanks!
User 187934 Photo


Senior Advisor
20,188 posts

Change this
jQ('input[name="PhoneNum"]').on("keyup paste", function() {

To this.
jQ('input[name^="PhoneNum"]').on("keyup paste", function() {
,
Than name each phone number input
PhoneNum1, PhoneNum2, PhoneNum3
and so on.
As long as they all start with the same naming structure it should work.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 629250 Photo


Registered User
50 posts

Eric,

Thank you for this very cool phone number magic.

User 187934 Photo


Senior Advisor
20,188 posts

Your welcome.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 629250 Photo


Registered User
50 posts

I'm not having any luck with the multiple phone number setup.

Names are "phone1" & "phone2"


<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <script>var jQ = $.noConflict(true);
// version 1
jQ( document ).ready(function() {

jQ('input[name^="phone"]').on("keyup paste", function() {
var input = this.value.replace(/[^0-9\(\)\s\-]/g, "");
var inputlen = input.length;
var numbers = this.value.replace(/\D/g,'');
var numberslen = numbers.length;
var newval = "";

for(var i=0;i<numberslen;i++){
if(i==0) newval="("+numbers[i];
else if(i==3) newval+=") "+numbers[i];
else if(i==6) newval+="-"+numbers[i];
else newval+=numbers[i];
}

if(inputlen>=1&&numberslen==0&&input[0]=="(") newval="(";
else if(inputlen>=6&&numberslen==3&&input[4]==")"&&input[5]==" ") newval+=") ";
else if(inputlen>=5&&numberslen==3&&input[4]==")") newval+=")";
else if(inputlen>=6&&numberslen==3&&input[5]==" ") newval+=" ";
else if(inputlen>=10&&numberslen==6&&input[9]=="-") newval+="-";

jQ(this).val(newval.substring(0,14));
});
});</script>


Thank you,
Randy G
User 187934 Photo


Senior Advisor
20,188 posts

Change this part of the script.
jQ('input[name=^"phone"]').on("keyup paste", function() {

to this
jQ('input[name^="phone"]').on("keyup paste", function() {

Sorry about that typo.;)
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 629250 Photo


Registered User
50 posts

I'll try that next time.

Adding a separate html element for each phone number is working.

Thanks,

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.