I am trying to capture ctrl+z key combination in javascript with this code:
Untitled Documen
Ctrl+t is also possible...just use the keycode as 84 like
if (evtobj.ctrlKey && evtobj.keyCode == 84) alert("Ctrl+t");