Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a way to find if element referenced in javascript has been inserted in the document.

Lets illustrate a case with following code:

var elem = document.createElement('div');

// Element has not been inserted in the document, i.e. not present

document.getElementByTagName('body')[0].appendChild(elem);

// Element can now be found in the DOM tree

Jquery has :visible selector, but it won't give accurate result when I need to find that invisible element has been placed somewhere in the document.

share|improve this question

3 Answers

up vote 2 down vote accepted

The safest way is to test directly whether the element is contained in the document:

function isInDocument(el) {
    var html = document.body.parentNode;
    while (el) {
        if (el === html) {
            return true;
        }
        el = el.parentNode;
    }
    return false;
}

var elem = document.createElement('div');
alert(isInDocument(elem));
document.body.appendChild(elem);
alert(isInDocument(elem));
share|improve this answer

Do this:

var elem = document.createElement('div');
elem.setAttribute('id', 'my_new_div');

if (document.getElementById('my_new_div')) { } //element exists in the document.
share|improve this answer
Thanks mate, I had this on mind but was confused by possibility of having ids collision. Minute ago I developed new method by checking the element's parent var. It's not definitely new and i'm quite surprised that i haven't figured it before. – mpontus Apr 27 '10 at 6:02

Use compareDocumentPosition to see if the element is contained inside document. PPK has browser compatibility details and John Resig has a version for IE.

share|improve this answer
I had wondered about using compareDocumentPosition too, but the messing around to get it working in all browsers doesn't really seem worth it when you can do domething as simple as walking up the node tree, as in my answer, which will work in pretty much every browser. – Tim Down Apr 27 '10 at 11:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.