JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  
<input id="whichkey" value="birşeyler yaz veya tıkla">
<div id="log"></div>
<script>$('#whichkey').bind('keydown mousedown',function(e){
  $('#log').html(e.type + ': ' +  e.which );
});  </script>

</body>
</html>