$(document).find('html').click(function(e) { var path = $(e['target']).domPath() var nth_child = e['target']['cellIndex'] ? ':nth-child(' + +(e['target']['cellIndex']+1) +')' : '' console.log($(path+nth_child).text('Найден')) console.log() });
$(document).find('html').click(function(e) {
var path = $(e['target']).domPath()
var nth_child = e['target']['cellIndex'] ? ':nth-child(' + +(e['target']['cellIndex']+1) +')' : ''
console.log($(path+nth_child).text('Найден'))
console.log()
});