JSFiddle - React, Tailwind, and code Playground

by Eric L

HTML

<input type="text" name='blah' id='blah' value='666'>

JavaScript

$("input").on('change', function(){			
	alert('bhal');
  $(this).val($(this).val());  
});