EDIT: This selector is correct. There bug must be elsewhere in the code. So this question is no longer relevant.
EDIT2: The real problem was that my parent class had the inline style "display:inline" attached to it, apparently the visible selector doesn't like display:inline. After I took that out it started working.
EDIT3: An inline element with an unset height. JQuery says, anything with a height of zero, is considered invisible, I suppose my element with an unknown height was defaulted to zero.
This is what I have but it doesn't seem to be working..
$('.parent-class:visible .my-class[state!="done"]')
I want to select all .my-class elements that their .parent-class element is visible.
Thank you!