jQuery .on method is used to bind events even without the presence of element on page load.
Here is the link
It is used in this way:
$("#dataTable tbody tr").on("click", function(event){
alert($(this).text());
});
Before jquery 1.7, .live() method was used, but it is deprecated now.