JSFiddle - React, Tailwind, and code Playground

by dying_sakura

HTML

<!DOCTYPE html>
<html>
<head>
  <script src="jquery.js"></script>
</head>
<body>
  <input type="text" value="" id="textbox1"/>
   <input type="text" value="" id="textbox2"/>
  


</body>
</html>

JavaScript

$("#textbox1").bind('input', function () {
   var stt = $(this).val();
   $("#textbox2").val(stt);
});