avatar
get id from event jQuery JQuery
$(document).keydown(function (event) {
    if (event.which === 8) {
        console.log(event.target.id)
    }
});
You need to login to do this manipulation!