I've bound some events to happen on left and right arrow key press like so:
$(document).keydown(function(e) {
switch(e.which) {
case 39: $("#next").trigger('click');
break;
case 37: $("#prev").trigger('click');
break;
}
});
However, obviously if you are in a form and press left and right to move through text, these events fire.
How do I change this so that that doesn't happen?