Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Robert-IMT/ac9470b01141ea676917fc7356403d9a to your computer and use it in GitHub Desktop.

Select an option

Save Robert-IMT/ac9470b01141ea676917fc7356403d9a to your computer and use it in GitHub Desktop.
jQuery( '#custom-phone input' ).bind( "change keyup input click", function() {
if( this.value.match( /[^0-9]/g ) ){
this.value=this.value.replace( /[^0-9]/g, '' );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment