ONclick on tr

ONclick on tr

Previously i use link-button in grid-view for when user click on that button then pop up appear.. 
and this successfully work but now i want when user click on row then pop up .. for link button i use this

$(function () {
    $('[ID*=lbViewChart]').on('click', function () {
        var row = $(this).closest('tr');
        var Id = row.find('td')[0].firstChild.data;
        var obj = {};
        obj.ID = Id;
        GetData(obj);
        return false;
    });

now how i modify in tr?