Hi
I am unable to override the alt+d keydown in javascript edge browser remaining all browsers working. it's navigating to address bar
on keydown event
$(document).keydown(function
(e) { if (e.altKey && e.key == "d") { e.cancelBubble = true; e.returnValue = false; e.preventDefault(); e.stopPropagation(); alert(); }});
Please
have any solution for this?