when focusing on a certain input, user press kind of combination key such as "ctrl+e", I would like to show "ctrl+e" in the input.
next time user press another combination key, it will clean input and show the new one.
how can I make this? I look for some javascript plugins, but they are most for detecting certain input.
like this: https://github.com/OscarGodson/jKey
$("input").jkey("i",function(){
jkey.log("You pressed the i key inside of an input.");
});
thanks a lot.