That's correct. It was removed in jQuery 1.3.3. It wasn't used in jQuery core (and ended up causing unexpected effects for things like hide/show which don't work on visibility).
This was done in favor of a significantly-faster implementation which only tends to focus on display: none; --John On Mon, Mar 2, 2009 at 2:03 PM, Ishmael <[email protected]> wrote: > > Was this done on purpose? > > if i have a ul, and say an li with the class of test and i give it a > style of .test{visiblity:hidden; border: 1px soild balck;} and then > try to select the other li's it using $('li:visible') it returns a the > li.test in the array. > If i remove the border rule from the css it returns the all the li's > except li.test > > <ul> > <li class="test">line</li> > <li>test</li> > <li>test</li> > <li>test</li> > </ul> > > > Forgive me if this was coverd before. > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en -~----------~----~----~----~------~----~------~--~---
