Skip to content

Instantly share code, notes, and snippets.

@pavan-idapalapati
Created September 9, 2019 12:25
Show Gist options
  • Save pavan-idapalapati/6388213c1042101dd3578d19f553024d to your computer and use it in GitHub Desktop.
Save pavan-idapalapati/6388213c1042101dd3578d19f553024d to your computer and use it in GitHub Desktop.
Android keypad event preventDefault solution
$('#test').on('input',function () {
var inputText = $(this).val();
console.log(inputText);
var resultText = inputText.replace(/[^0-9]/g, '');
$(this).val(resultText);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment