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.

This should be really simple but I'm having trouble with it. How do I get a parent div from a child element.

e.g

HTML:

<div id ="test>
<p id =myParagraph>Testing</p>

</div>

JAVASCIPT:

var pDoc = document.getElementByID("myParagraph");
var parentDiv = ??????????   

I would have though document.parent or parent.container would work but I keep getting not defined errors. Note that the pDoc is defined, just not certain variables of it.

Any ideas?

P.S I would prefer to avoid JQuery if possible.

share|improve this question
1  
getElementByID should be getElementById. – thirtydot Jul 28 '11 at 9:39
Wasn't copy pasted. Just a quick write straight into the question box. – OVERTONE Jul 28 '11 at 10:02

4 Answers

up vote 30 down vote accepted

You're looking for parentNode:

parentDiv = pDoc.parentNode;

Handy References:

  • DOM2 Core specification - well-supported by all major browsers
  • DOM2 HTML specification - bindings between the DOM and HTML
  • DOM3 Core specification - some updates, not all supported by all major browsers
  • HTML5 specification - which now has the DOM/HTML bindings in it
share|improve this answer
Awesome! Id been calling the values directly. Should have called the actual element with this one. – OVERTONE Jul 28 '11 at 10:01

If you are looking for a particular type of element that is further away than the immediate parent, you can use a function that goes up the DOM until it finds one, or doesn't:

// Find first ancestor of el with tagName
// or undefined if not found
function upTo(el, tagName) {

  var t = el.parentNode;
  tagName = tagName.toLowerCase();

  while (t) {

    if (t.tagName && t.tagName.toLowerCase() == tagName) {
      return t;
    }

  // Many DOM methods return null if they don't 
  // find the element they are searching for
  // It would be OK to omit the following and just
  // return undefined
  return null;
  }
}
share|improve this answer

The property pDoc.parentElement or pDoc.parentNode will get you the parent element.

share|improve this answer

This might help you.

ParentID = pDoc.offsetParent;
alert(ParentID.id); 
share|improve this answer

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.