You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
277 B
9 lines
277 B
2 years ago
|
window.addEventListener('load', function (e) {
|
||
|
this.document.body.addEventListener('keydown', function (e) {
|
||
2 years ago
|
if (e.key == 'Backspace' && (e.target.tagName.toUpperCase() !== 'INPUT' || e.target.value.length === 0)) {
|
||
2 years ago
|
e.preventDefault()
|
||
|
window.history.back()
|
||
|
}
|
||
|
})
|
||
|
})
|