In a table with some rows hidden, I want to get the next visible row, if one exists. This will do the job:
row = $(selectedRow).nextAll(':visible');
if ($(row).length > 0)
selectedRow = row;
but it is very slow when many rows follow the selected row. A scripted approach is:
var row = $(selectedRow).next();
while ($(row).length > 0 && !$(row).is(':visible'))
row = $(row).next();
if ($(row).length > 0)
selectedRow = row;
This is much faster, but there's got to be an elegant all-jQuery approach I can use.