wonder what i'm doing wrong:
$('.s').keypress(function(e) {
switch (e.keyCode) {
case 8: // Backspace
//console.log('backspace');
case 9: // Tab
case 13: // Enter
case 37: // Left
case 38: // Up
case 39: // Right
case 40: // Down
break;
default:
doSearch();
}
});
I want my doSearch() funciton also to be fired when i hit the backspace key. At the moment absolutely nothing happens when i press the backspace in Chrome and Safari.
any ideas?