Ok, basically, I have an element that I get which happens to be a <tr> element.
But If I find a <td> element with a rowspan that is greater than 1, within any of the <tr> elements, I need to exclude these <tr> elements, starting with the $("td").parent() of where the rowspan > 1, and I need to exclude all other <tr> elements up to the rowspan quantity within an each()
So something like this:
$("td").each(function{
if ($(this).attr('rowspan') > 1)
var curRowspan = $(this).attr('rowspan');
// So now rowspan can equal 2, 3, 4, 5, and higher.
// Now I need to exclude the NEXT <tr> elements based on the quantity of rowspans.
// So if the rowspan = 2, than I need to exclude $(this).parent() and $(this).parent().next() which seems easy enough, but I need this to work on more than 2 rowspans also. Needs to exclude the current <tr> element and all <tr> elements after, until it reaches the rowspan quantity indicated by curRowspan.
// HOW TO DO THIS and return false out of the each() for each of these `<td>` elements within that quantity of `<tr>` elements indicated by the rowspan of a `<td>` element???
});
<tr>in a row that contain a<td>with a rowspan? – mrtsherman Jan 31 at 5:42<tr>elements. For example, if I found a rowspan=4 on the 1st<tr>element, and a rowspan=2 on the 2nd<tr>element, since the 4 affects up to the 4th<tr>element, than this is more than the rowspan=2 on the 2nd<tr>element because this would only affect up to the 3rd<tr>element. So it should always grab the rowspan quantity that affects the most<tr>elements until it reaches the end of the<tr>elements that it affects and exclude those<tr>elements returning false. – SoLoGHoST Jan 31 at 5:48