I have function
$('table tr:gt(0)').each(function() {
if ($('td:contains("'+ pointName +'")', this).length == 0) $(this).hide();
});
i want this function to be bind with live().
i have tried something like this which couldn't work.
$('table tr:gt(0)').live('each', function (){
if ($('td:contains("'+ pointName +'")', this).length == 0) $(this).hide();
});
what is the correct way?
eachwhere you should sayclickorchangeetc...