Good afternoon I have this code here
$(document).on('keydown', function(e) {
console.log(e.which); // Retorna o número código da tecla
console.log(e.altKey); // Se o alt foi Pressionado retorna true
if ((e.altKey) && (e.which === 80)) { // Pesquisar (Alt + P)
document.body.innerHTML = 'Abriu Pesquisa.';
}
});
he and alt plus the letter more in the case of two letter example alt + p + o is possible anyone who knows could help me Thanks in advance.