I'm trying to simulate the combination of the keydown/keypress events 'ctrl' and '+', with
Anyone who can help me to correct this ?
Code:
var e=jQuery.Event("keydown",{keyCode:17} && jQuery.Event("keypress",{keyCode:107})); jQuery("body").trigger(e);
Comment