jquery - Add dash in auto complete phone number -


question:

is possible automatically add dash "-" in auto complete?

let have phone number field , if type phone number in browser auto complete show.

ex.

this browser auto complete value 1234567890

once select want automatically format this

123-456-7890

because there site dont have validation format phone field can input 10 digit number continuesly , once have in browser cache display other phone field.

thanks in advance.

$('#phone-number-field').keyup(function(){     $(this).val($(this).val().replace(/(\d{3})\-?(\d{3})\-?(\d{4})/,'$1-$2-$3')) }); 

Comments

Popular posts from this blog

java - Andrioid studio start fail: Fatal error initializing 'null' -

android - Gradle sync Error:Configuration with name 'default' not found -

StringGrid issue in Delphi XE8 firemonkey mobile app -