Well, Ctrl + Z / Y is possible, but I donβt know about the right key-> Undo / Redo part.
$(document).keydown(function (e) { var thisKey = e.which; if (e.ctrlKey) { if (thisKey == 90) alert('Undo'); else if (thisKey == 89) alert('Redo'); } });
source share