JSFiddle - React, Tailwind, and code Playground
by karthick6891
JavaScript
jQuery(document).on('keydown', function(e) {
// Stop Browser History (ctrl + H)
if (e.ctrlKey && e.keyCode === 72) {
return false;
}
// Stop Alt + Home
if (e.altKey && e.keyCode === 36) {
return false;
}
});