$(document).ready(function(){
$("div.custList table").delegate('tr', 'click', function() {
alert("You clicked my
!");
//get
element values here!!??
});
});
A delegate works in the same way as live() except that live() cannot be applied to chained items, whereas delegate() allows you to specify an element within an element to act on.