the way that i use is: $( "body" ).append("<div class='testDiv'></div>").find( ".testDiv" );
Thus the created element will be returned 2007/8/20, Jay W <[EMAIL PROTECTED]>: > > > With the help from a few jQuery'ers, the only way to dynamically > create and append element using jQuery for multiframe application is > > $(window.document.body).append("<div class='testDiv'></div>"); > > This jQuery statement returns window.document.body object. > > There will be quite a few elements created this way in a same > document, it will be confusing to use array index to retrieve the > newly created element. So the question is: if I want to get that newly > created object directly, what's the correct way to do it? > > Thanks. > >