On Wed, Jul 29, 2009 at 4:23 PM, lukas<animod...@gmail.com> wrote: > How can I pick an id element (here #bridge1,#bridge2) and toggle its > child (here a p element) without actually using the id element as > parent? > 'this > p' apparently does not work.
$(this).children("p") It only checks immediate children (as with ">"). For further descendants use .find() instead. -- Brett Ritter / SwiftOne swift...@swiftone.org