I need select the tr
of thead
$("#table > thead > tr");
Is much the difference respect to this:
$("#table").find("thead").find("tr");
Is there a way to optimize this jquery selector, what is the best?
I need select the tr
of thead
$("#table > thead > tr");
Is much the difference respect to this:
$("#table").find("thead").find("tr");
Is there a way to optimize this jquery selector, what is the best?