JSFiddle - React, Tailwind, and code Playground

by pradeep

HTML

<input id="p_first"/>

JavaScript

$('#p_first').keypress(function(event){
            console.log(event.which);
        if(event.which != 8 && isNaN(String.fromCharCode(event.which))){
            event.preventDefault();
        }});