Is it possible with jQuery to automatically simulate a press on a keyboard, f.ex. inside an html input field?
As explanation: If I press the a inside an
You can try something like.
$("inputSelector").trigger($.Event("keypress", { keyCode: 97 }));
Pass the keycode of whatever key you want.