Просто замените «myTable» ниже на идентификатор таблицы, в которой вы хотите, чтобы строки были активными.
$('#myTable tr').click(function(){
//Whatever you want to happen when the row is clicked goes here, for example:
$('#overlay').click(); //Fires the previously defined onclick event for #overlay.
});