vote up 1 vote down star

On IE I can do this with the (terribly non-standard, but working) jQuery

if ($.browser.msie)
    $(document).keydown(function(e) { if (e.keyCode == 8) window.event.keyCode = 0;});

But is it possible to do in a way which works on Firefox, or in a cross-browser way for a bonus?

For the record:

$(document).keydown(function(e) { if (e.keyCode == 8) e.stopPropagation(); });

does nothing.

$(document).keydown(function(e) { if (e.keyCode == 8) e.preventDefault(); });

solves the problem, but renders the backspace key unusable on the page, which is even worse than the original behaviour.

EDIT: The reason I do this is that I'm not creating a simple web page but a large application. It is incredibly annoying to lose 10 minutes of work just because you pressed backspace in the wrong place. The ratio of preventing mistakes vs. annoying users should be way above 1000/1 by preventing the backspace key from navigating back.

EDIT2: I'm not trying to prevent history navigation, just accidents.

flag

66% accept rate
7  
Why in the world would you want to do this? I use backspace all the time for navigation and would be ridiculously annoyed if the page had disabled it somehow. – Morinar Sep 29 at 22:12
2  
Why do you want to do this? Keyboard shortcuts are important for power users and disabled users alike to effectively use your site. – pkaeding Sep 29 at 22:12
5  
Because the backspace key is overloaded. You might not have noticed it, but you probably use it all the time for erasing letters you've just typed in a text field. Some of my customers have been having trouble with that causing the page to go back, so this is useful information. Nobody but you clowns knows that backspace is supposed to go back a page. That's something I never knew, and it's outright hostile behavior for a browser to have. I think all pages should disable that behavior. – Breton Sep 29 at 22:32
6  
Why do people think this is odd? Using backspace for navigation is a really dumb shortcut! there are so many text fields that users might want to delete text from - imagine having a long SO answer, switching to another window to check something, and then you come back and mis-click the edit area, press backspace to remove a word and suddenly the browser goes back a page and you've potentially lost everything you just wrote. – Peter Boughton Sep 29 at 22:33
2  
Why I want to do this? I'm not creating a web site but a web application. Some input fields are read-only in which case they look editable, but if you press backspace you leave the page. The ratio of backspace presses intending to navigate back vs. backspace presses trying to erase something is probably much less than 1 / 1000. – erikkallen Sep 30 at 8:31
show 3 more comments

3 Answers

vote up 1 vote down

Based on the comments it appears you want to stop people losing information in forms, if they press backspace to delete but the field is not focused.

In which case, you want to look at the onunload event handler. Stack Overflow uses it - if you try to leave a page when you've started writing an answer, it pops up a warning.

link|flag
1  
That's a stupid solution. Got anything better? – Breton Sep 29 at 23:34
1  
sorry that was a rude comment. What I mean is, the user probably doesn't want to be berated for doing something they didn't even know was wrong. Why not just silently eat the key with an onkeydown? The goal is not to completely prevent the user from leaving the page, but to guard against this common mistake. In addition, pop up dialogues are not very effective, or useful. Users don't read them. Are you sure you want to leave the page? Okay! No wait wait, I didn't want to leave the page.. oops too late. – Breton Sep 30 at 2:46
1  
OK then take it or leave it. I think you're trying to over-engineer a problem that doesn't really exist, or at least isn't important. And in my experience, it's only power users who click "OK" on unfamiliar dialogs without reading them properly. ;) – DisgruntledGoat Sep 30 at 10:49
@Disgruntled, You couldn't be more wrong. If you don't believe me, you could believe Raymond: blogs.msdn.com/oldnewthing/archive/… – erikkallen Sep 30 at 11:13
1  
Are you and Breton the same person? Anyway you kinda shot yourself in the foot there - the article says "the default answer is Cancel" so when seeing the dialog about leaving the page, they're going to press "Cancel" and therefore not leave the page. Though it should be noted that Chrome's options on that dialog are "Leave this page" and "Stay on this page" which are very clear. – DisgruntledGoat Sep 30 at 12:13
show 2 more comments
vote up 6 vote down

Here is a way to do it in Firefox and IE. However I would highly insist that you don't do this. As the comments state it's generally not a good idea to override default behavior unless it makes sense.

Lets say for example that you wanted to save a copy of this webpage for viewing offline, you pressed Ctrl+S and instead of your browser saving the web page, your browser just closes. How would that make you feel? Probably a little pissed.

link|flag
1  
I kinda like that Google docs overrides the save function. But otherwise I agree. erikkallen: Are trying to prevent back in history altogether? You could loop through all inputs and textareas in the document in your function and only preventDefault if nothing has focus. – Jesse Kochis Sep 29 at 22:29
2  
That's not a fair comparison. The backspace key behavior is bad and hostile, and deserves to be disabled. ctrl+s is an entirely different kettle of fish. – Breton Sep 29 at 22:33
1  
How did you style Ctrl and S to look like keyboard buttons? – Baddie Sep 29 at 22:40
1  
Using the <kbd> tag that Markdown provides. Take a look at the complete reference: stackoverflow.com/editing-help – Lucas McCoy Sep 29 at 22:43
2  
No user I have ever met expects it to behave that way. When my users discovered that it works that way, I get the blame by default. It was a mistake, and it should be undone. We should not enshrine default behavior as "the correct way" just because it's default. I've also had to disable the new draggable apis that browsers have now, because they ruin traditional mousedown/mouseup/mousemove drag and drop behavior. Default behaviors aren't always expected, and they aren't always a good idea. This is a very good case. It's a downright evil feature by any measure. – Breton Sep 29 at 22:45
show 5 more comments
vote up 2 vote down

Not sure why no-one's just answered this - seems like a perfectly reasonable technical question to ask whether it's possible.

No, I don't think there's a cross-browser way to disable the backspace button. I know it's not enabled by default in FF these days though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.