Good Morning,
I am trying to write a selector that would select all rows that contain a span element that has a class of "cancelMenu".
Is either of these better than the other? Or is there an even better way to write it?
$("span.cancelMenu").closest("tr");
$("tr > span.cancelMenu");
Any thoughts or ideas? I am using the first one and it works but it seems like I am only targeting one row. I really want all rows at once.
Thanks, ~ck