mail us  |  mail this page

products  |  company  |  support  |  downloads  |  isp services  |  contact us

Tech Info - DOM-2 nodeValue attribute

W3C Core Reference. Part of the Node Interface

nodeType attribute

Returns the value, if any, for the node (see list below). Typically used to read and/or update node text.

Syntax

string = object.nodeValue;

Related Commands

nodeName attribute, nodeType attribute.

Values

nodeValue returns a value determined by the nodeType as follows:

nodeType Value
ELEMENT_NODE = 1 Null
ATTRIBUTE_NODE = 2 Value of Attribute
TEXT_NODE = 3 Text of node
CDATA_SECTION_NODE = 4 Contents of CDATA section
ENTITY_REFERENCE_NODE = 5 Null
ENTITY_REFERENCE_NODE = 5 Null
ENTITY_NODE = 6 Null
PROCESSING_INSTRUCTION_NODE = 7 Entire content excluding target
COMMENT_NODE = 8 Contents of comment
DOCUMENT_NODE = 9 Null
DOCUMENT_TYPE_NODE = 10 Null
DOCUMENT_FRAGMENT_NODE = 11 Null
NOTATION_NODE = 12 Null

Examples

<!-- HTML FRAGMENT -->
<p id="one">Test Text</p>

// read text value
// assumes a single child node for the paragraph - risky
txt = document.getElementById("one").firstChild.nodeValue;
// txt = Test Text
// update contents of text node
document.getElementById("one").firstChild.nodeValue = "Kilroy was here";

// safer code to find text node
cnodes = document.getElementById("one").childNodes;
for(i = 0; i < cnodes.length; i++)
{
  if(cnodes[i].nodeType == 3)
  {
   // do something if this is an text node
  }
}

Notes:

  1. Text nodes are childNodes of the paragraph node.


Problems, comments, suggestions, corrections (including broken links) or something to add? Please take the time from a busy life to 'mail us' (at top of screen), the webmaster (below) or info-support at zytrax. You will have a warm inner glow for the rest of the day.

Tech

tech home
web stuff
dom stuff
css stuff
language stuff
regex stuff
rfc stuff
protocol stuff
cable stuff
lan wiring
rs232 wiring
howto stuff
survival stuff
wireless stuff
ascii codes
data rate stuff
telephony stuff
mechanical stuff
pc stuff
electronic stuff
tech links
open guides
RSS Feed Icon RSS Feed

If you are happy it's OK - but your browser is giving a less than optimal experience on our site. You could, at no charge, upgrade to a W3C STANDARDS COMPLIANT browser such as Mozilla

web zytrax.com



HTML Stuff

W3C HTML 4.01
HTML5 (WHATWG)
W3C Page Validator
W3C DOCTYPE

XHTML Stuff

W3C XHTML Basic
W3C XHTML 1.1
W3C CSS1
W3C CSS2.1

DOM Stuff

W3C DOM
W3C DOM Events
Gecko DOM
MSIE DOM

Usability/Access

usability.gov
W3C -WAI
Web Style Guide
Michael L Bernard
WebAim.org

Jolly Useful

Peter-Paul Koch
A List Apart
Eric Meyer on CSS
glish.com
DOCTYPE definitions

Our Stuff

Our DOM Pages
DOM User Guide
DOM Explorer
DOM Navigation
CSS Short Cuts
CSS Techniques
CSS overview
Oh Really!

Javascript

ECMA-262

Pop-out Menus

webmasterbase.com
Brainjar Menubar
Our Lite JS Menus
Our CSS Menus
Tigra Menus

printer friendly

Print Page

SPF Record Conformant Domain Logo

Copyright © 1994 - 2008 ZyTrax, Inc.
All rights reserved. Legal and Privacy
site by zytrax
Hosted by super.net.sg
web-master at zytrax
Page modified: May 24 2007.