Skip to content

Instantly share code, notes, and snippets.

@vsxed
Created December 13, 2016 12:53
Show Gist options
  • Select an option

  • Save vsxed/d4928ae06a2361274f6e5cc1fa3ef9f3 to your computer and use it in GitHub Desktop.

Select an option

Save vsxed/d4928ae06a2361274f6e5cc1fa3ef9f3 to your computer and use it in GitHub Desktop.
function KeyPress(e) {
var evtobj = window.event? event : e;
if (evtobj.keyCode == 37 && evtobj.altKey) {
window.history.back()
} else if (evtobj.keyCode == 39 && evtobj.altKey) {
window.history.forward()
};
}
document.onkeydown = KeyPress;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment