All I have found about this is that there are inconsistencies among different web browsers when it comes to key codes.
I have the following code that runs fine when pressed enter in Safari, Opera and Chrome, but not in Firefox.
I use FF 9.0.1
Here are two code snippets where the problem occurs:
1)
//Post something
$('#postDiv').on('keydown', '#posttext', function(e) {
if ((e.keyCode == 13 || e.which == 13) && !event.shiftKey) {
post($(this));
}
});
2)
//Comment on a post
$('.commenttext').live('keydown', function(e) {
if ((e.keyCode == 13 || e.which == 13) && !event.shiftKey) {
comment($(this));
}
});
Both functions aren't even called.
Thank you in advance :-) Dennis
EDIT 1
I did some more testing only with e.which and noticed that it works when I leave out the && !event.shiftKey - apparently FF doesn't know that command. Is there any alternative to that? I would like the user to be able to hit shift+enter without submitting the post. I have already tried the condition if (e.which==13 && e.which!=16) but to no avail.
EDIT 2 - SOLUTION
First of all thank you for all answers! Of course it had to be e.shiftKey, not event.shiftKey! Now it works in all browsers (the only one I haven't tried yet is IE).

event.whichfor consistent result across browsers. developer.mozilla.org/en/DOM/event.charCode#Notes – Vega May 3 '12 at 21:39e.whichonly, jQuery normalizes it.) – Kevin B May 3 '12 at 21:39