JSFiddle - React, Tailwind, and code Playground

by ThiefMaster

HTML

<script src="https://raw.github.com/jeresig/jquery.hotkeys/master/jquery.hotkeys.js"></script>
<input id="search">
<div id="out"></div>

JavaScript

$('#search').on('keyup', function() { });

$(document).on('keydown', null, 'del', function() {
    $('#out').append('x ');
});