antserg,
Как вариант можешь сделать так:
...
window.preventAction = true;
$(document).keypress(function(e){
if(e.keyCode==40 || e.keyCode==38){
if (window.preventAction) e.preventDefault();
}
});
$('#img2').click(function(e){
window.preventAction = false;
});
...
|