Is there a way to listen to keyboard events on a DIV element?
My code:
<div id="div" style="height:50px" class="ui-widget-content"></div>
<input id="input">
$('#div,#input').keyup(function(event){
console.log(event.keyCode);
});
Actually, the code triggers only for the input, can I handle it for the div?