event on keypress arrows down not working, not changing color to red, no errors at console, What i'm doing wrong?
var getText = document.getElementsByTagName('h1')[0];
getText.onclick = function() {
getText.innerHTML = "Simple";
}
function keyPress() {
if(event.which == 13) {
getText.style.color = 'blue';
}
if(event.which == 40) {
getText.style.color = 'red';
}
}