tags:

views:

55

answers:

2

I'm using jquery 1.3 and is trying to duplicate the 1.4 .has functionality.

I need to check if the .page element contains the image, and if it doesn't, append it.

Is it something like:

var imageid = thirdimage;

if ($('#page:has(#'+imageid+')') === undefined) {
   $('#page').append($('#'+imageid));
}

Thanks.

+1  A: 
if( $('#page').find('#'+imageid).length )
  // I has the image! :P
Paul Alexander
+1  A: 

$('#page').find('#'+imageid).length == 0