I have this situation
var tableHtml=$('.tableClass').html();
Now I want through iterate through each of the tr inside the tbody.
I tried $(tableHtml).find('tbody > tr').each(function());
Cant get it to work.
What is the right way of doing this. Due to special requirements I have to put the tabke html into a variable.
Please Advise.