JavaScript
2
Вклад в тег
$('body').on('click', function(e){
var target = $(e.target).hasClass('button');
if (target == true) {
console.log("нажали на баттон")
}else{
console.log("нажали на что-то другое")
}
});