Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok so I use the following jquery selector + length attribute to get the current number of visible rows in a table:

$('#orderable tbody tr:visible').length

This works magnificently in Chrome (v. 13.0.782.220 m), but is wrong in Safari (v. 5.0.5) (both webkit... I find this baffling.)

I grabbed the selector object and logged it in the console to see what it was getting, and in Safari, the last 4 rows of my table are present in the selector object twice, and I have no idea why. The table itself does not show these extra 4 rows, nor are they hidden anywhere weird on the page when I view the HTML in the console.

Has anyone ever seen anything like this before? I'm not sure I've ever seen Safari and Chrome behave differently before... FWIW, the length property is correct in Firefox and IE

Oh and this is all being tested on Windows 7, however my boss informed me of this bug on Safari on Mac as well.

share|improve this question

1 Answer

Any difference if you use the direct descendant selector style?

$('#orderable > tbody > tr:visible').length
share|improve this answer
good thought, but no :( – wolv2012 Sep 16 '11 at 16:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.