jQuery Escuche hacer clic en la clase que se creó más tarde
// If "tr" is created dynamically.
$("#dataTable tbody").on("click", "tr", function(event){
console.log($(this).text());
});
Duco Defiant Dogfish