[jQuery] Re: Selecting dynamic elements

2009-03-31 Thread schickb
Thanks On Mar 27, 3:02 pm, James james.gp@gmail.com wrote: Try it out: $inner = $elems.find(#inner); alert( $inner.text() );

[jQuery] Selecting dynamic elements

2009-03-27 Thread schickb
Is it possible to select an element from dynamically created elements before the tree is attached to the document? Given: $elems = $('div id=outerdiv id=innerhello/div/div'); Is there any way to select and operate on the inner div before attaching these element to anything?

[jQuery] Selecting a child of 'this'

2009-03-04 Thread schickb
I'd like to apply a css effect to a child upon hovering over its parent. Both are block level elements. The trick is that there is a list of these and I only want to modify one at a time. I've got something that works, but it feels a bit ugly: $(#parent).hover( function(){