jQuery
$(function() {
$(
"#tablex tbody"
).on(
"click"
,
"td"
,
function
(event){
alert($(
this
).text());
});
});