I'm trying to get to the row that is "current" in GMail Inbox view, the one marked by a little triangle on the left. The one you can change using j,k hotkeys. I came up with this but it still returns every row.
jQuery("#canvas_frame").contents().find('tr#.zA>td:first-child>img[style]')
I need two selectors - one for the current row and another for every other row, not including the current.
Thanks.