[HTML] pobierz, plaintext $("body").keydown(function(e){ if ((e.keyCode || e.which) == 37) { alert('left'); } if ((e.keyCode || e.which) == 39) { alert('right'); } }); [HTML] pobierz, plaintext