JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
  <style>
  p { color:blue; }
  div { color:red; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <input type="text" value="Bazı yazılar" />
  <input type="text" value="Beni lütfen seçiniz." />

  <div></div>
<script>
    $(":input").select( function () { 
      $("div").text("Bir şeyler seçildi").show().fadeOut(1000); 
    });
</script>

</body>
</html>