Hi:
I hope to trigger the key event at the same time, such as
Alt+Ctrl, is this possible?
What I know now is the following codes:
$(function() {
var e = $.Event('keypress');
e.which = 79; $('item').trigger(e);
});is that possible to make that, thanks a lot.