i have a content editable div, i want to disable the undo operation i.e control + z operation on the editable div, i tried like this
//key up handles all keypresse events. Backspace wont fire for simple keypress event in jquery $("#Partner").keyup(function (e) { if (e.keyCode == 90) { e.preventDefault(); return; } still i am able to perfrom undo operation, any input on how to disable undo on editable div?