Level 122
depends where focus is when you key down
this will only work if an input element of class aAU has focus
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
$( ".aAU" ).on( "keydown", function() {
alert('Key pressed'); // no alert displayed when a key is pressed
});
$( ".aAU" ).on( "click", function() {
alert('clicked'); // alert displayed when a click is done
});
Please or to participate in this conversation.