Hi all:
I would like to write a syntax whose effect is opposite to $(parentID).children("tr.sc:hidden").
Do jQuery get ("tr.sc:show") or similar syntax?
Thanks
Hi all:
I would like to write a syntax whose effect is opposite to $(parentID).children("tr.sc:hidden").
Do jQuery get ("tr.sc:show") or similar syntax?
Thanks
$(parentID).children("tr.sc:not(:hidden)");
$(parentID).children("tr.sc").not(":hidden");
i think what you're lookingfor is :visible. http://docs.jquery.com/Selectors/visible