JSFiddle - React, Tailwind, and code Playground

by Nir Azuelos

HTML

<input id="tags" placeholder="enter tag..." />

JavaScript

$("input#tags").keydown(function (e) {
    if(e.ctrlKey && e.keyCode == 13) {
        alert("Your tag is: " + $(this).val());
        $(this).val("");
    }
});