JSFiddle - React, Tailwind, and code Playground

by jordan_josh3184

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,'');
	});
});