USA Phone format

by Ketan Patel

HTML

<input type="text" class="input-text " name="account_home_phone" id="account_home_phone" placeholder="###-###-####" value="" maxlength="12" autocomplete="off">

JavaScript

$(document).ready(function() {

  $("#account_home_phone").bind("paste", function(e){
  	setTimeout(function(){
    	var text = $("#account_home_phone").val().length;
      var regExpr = /[^0-9]/g;
      var nvtext = text.replace(regExpr, "")
      alert(nvtext);
    	
    }, 500);
  } );

});