Element#next is for siblings, not children, so that won't work. $(dropp).down('.de_small') should work (you left out the dot - your version looks for an element named <de_small>. $(dropp).down(0) seems like it should work, as should $(dropp).down() with no parameters, as long as there are no other children in that span.
-Fred
On Thu, Jul 3, 2008 at 7:15 AM, elduderino <
jamesf...@googlemail.com> wrote:
var ooo = $(dropp).next('.de_small');
var ooo = $(dropp).next(0);
var ooo = $(dropp).next(1);
var ooo = $(dropp).down(0);
var ooo = $(dropp).down('de_small');
But none work.....I should be able to access the piece even though
it's been inserted in to the droppable span on the fly right???
--
Science answers questions; philosophy questions answers.