jquery Checking to see if element has element
- by Mark
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.