setInterval не фурычит! чего??
И onkeypress работает! Хотя если писать onkeydown или onkeyup то работает норм все!
document.onkeypress = setInterval(function keyIsDown(event) {
//***W***
event = event || window.event;
if (xmlHttp.readyState == 4) {
if (xmlHttp.status == 200) {
if (event.keyCode == 87) {
if (sText2 == 0){
xmlHttp.open("GET", "controls.php?keyW=1", true);
xmlHttp.send(null);
document.kartinka.src = '2' + '.gif';
}
}
}
}
}, 1000);
Будьте любезны помочь.