Modify ↓
Ticket #10172 (closed bug: wontfix)
Harmonizing the "keypress" event between browsers
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | event | Version: | 1.6.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Recommend:
$('input').live('keydown', function(event) { if ( event.which === 37 ) { console.log("left key pressed"); } });And also: http://api.jquery.com/keypress/