I have an HTML table populated from database.And a jquery function that adds client click event to every table row.\[code\]$(function() { $(".TreeTable tr").each(function(index) { $(this).click(function() { alert($(this).text()); }); });});\[/code\]Now I am able to get complete row values by clicking on any row.Now I need to access individual cell value in that function.Can any one tell me how I get individual cell value on row click.