Given a jQuery object, $j, I need to know if it represents something that is already on the page or if it is something that has not yet been put on the page. For example, if I have this:
$j = $('#id-of-something-already-on-the-page');
or
$j = $('<p>Where is pancake house?</p>').appendTo($('#this-is-already-there'));
Then I have something on the page and I don't need to put it on the page. But, if I just have this:
$j = $("<p>I'll cook you some eggs, Margie.</p>");
Then I'd need to append it before it is on the page.
The question is how do you ask $j if it is on the page or not? I know two ways the work well enough:
- See if it has a parent:
$j.parent().length > 0implies that it is on the page. - See if it has a valid index:
$j.index() > -1implies that it is on the page.
I can see the first one failing if $j is the html or possibly body; I'm happy to ignore those two pathological cases. I can't think of any way that the second approach would fail.
Is there a standard technique for asking if a jQuery object is on the page or not? I don't care if $j is visible.
$j.closest('body').size()>0– Michael Haren Mar 25 '11 at 3:42$j.parent().lengthin certain pathological cases, couldn't it? OTOH, if someone is trying to put a body in a body they probably deserve a bit of suffering. – mu is too short Mar 25 '11 at 3:56$j.closest('body').length > 0but that's just a style issue. I can't seeclosest('body')failing except in bizarre pathological cases. – mu is too short Mar 26 '11 at 23:34