I got these code, which should react on mousewheel and keydown:
$('#wellcome-box').bind('mousewheel, keydown', function(event){
console.log(event);
if(event.which.keyCode == 40){
alert();
}
else
{
movesTo('#slide-box-art');
$('#onto-panel').slideDown(250);
}
});
but all I got is a mousewheel event, but not any keydown. What I do wrong?