JSFiddle - React, Tailwind, and code Playground
HTML
<input class='form-control' id="respondentPpidInput"
onkeyup="showAddCmprspNote(event)" />
JavaScript
$(document).ready(function(){
$("#respondentPpidInput").keyup(function () {
this.value = this.value.replace(/[^0-9\.]/g,'');
});
$("#complainantPpidInput").keyup(function () {
this.value = this.value.replace(/[^0-9\.]/g,'');
});
});