Ctrl+z

by Aldi Unanto

HTML

try to press combination of key: (Ctrl + z)

JavaScript

function KeyPress(e) {
      var evtobj = window.event? event : e
      if (evtobj.keyCode == 90 && evtobj.ctrlKey) alert("Ctrl+z");
}

document.onkeydown = KeyPress;