I have a table on the page that's loaded when I click search button. The table loads dynamically and it doesnt exist in the layout. I wonder how to select this table inside a function to do some other stuff with it. I tried something like this to select a column:
$(function (){
var elem = $('tbody').find('td');
});
But I'm not sure how to call this tbody if it doesn't exist in the layout yet. How to do that?