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.

getElementByIDshould begetElementById. – thirtydot Jul 28 '11 at 9:39