Оптимизация
$("table td").on("click", function() {
/* ... */
});$("table").on("click", "td", function() {
/* ... */
});$("body").on("click", "*", function() {
console.info("Click on "+this.tagName);
});Last updated
$("table td").on("click", function() {
/* ... */
});$("table").on("click", "td", function() {
/* ... */
});$("body").on("click", "*", function() {
console.info("Click on "+this.tagName);
});Last updated