parentNode property

This topic has not yet been rated - Rate this topic

Retrieves the parent object in the document hierarchy.

Syntax

JavaScript

p = object.parentNode

Property values

Type: Object

the parent node.

Standards information

Remarks

The topmost object returns null as its parent.

Examples

This example assigns the parentNode of a span object to a variable.


<SCRIPT>
var oParent = oSpan.parentNode;
</SCRIPt>
:
<BODY>
<SPAN ID=oSpan>A Span</SPAN>
</BODY>

This example assigns the parentNode of a node, created with the createElement method, to a variable.


var oNode = document.createElement("B");
document.body.insertBefore(oNode);
var oParent = oNode.parentNode;

See also

a
abbr
address
area
attribute
b
base
bdo
blockQuote
body
br
button
caption
cite
code
col
colGroup
comment
dd
del
div
dl
documentType
dt
em
embed
fieldSet
form
head
hn
hr
html
i
iframe
img
input type=button
input type=checkbox
input type=file
input type=hidden
input type=image
input type=password
input type=radio
input type=reset
input type=submit
input type=text
ins
kbd
label
legend
li
link
map
object
ol
option
p
pre
ProcessingInstruction
q
s
samp
script
select
small
span
strong
sub
sup
table
tBody
td
textArea
TextNode
tFoot
th
tHead
title
tr
u
ul
var
About the W3C Document Object Model

 

 

Build date: 11/28/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.