mail us  |  mail this page

contact us
training  | 
tech stuff  | 

Tech Stuff - DOM value attribute

W3C Core Reference. Part of the Attr Interface

value attribute

Returns a string containing the value of the attribute.

Syntax

string = element.attributes[x].value

Related Stuff

Parameters

None

Examples

// get NamedNodeMap of element's attributes
map = document.getElementById("one").attributes;

// use NamedNodeMap methods or attributes to access
for(i = 0; i < map.length; i++)
{
	// place name and value in array
	attrdata[i] = map[i].name+" = "+map[i].value;
}

Notes:

The above example gets a reference to an existing element with id="one", and obtains a list of its attributes in map. The 'for' loop then places the attribute names and their values in the array attrdata.



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 Stuff

RSS Feed Icon

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 Firefox

web zytrax.com

Share Page

share page via facebook tweet this page submit page to stumbleupon submit page to reddit.com

Page Features

Page comment feature Send to a friend feature print this page Decrease font size Increase font size

HTML Stuff

W3C HTML 4.01
HTML5 (WHATWG)
HTML4 vs HTML5
HTML5 Reference
W3C Page Validator
W3C DOCTYPE

CSS Stuff

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
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 Techniques
CSS Short Cuts
CSS overview
Oh Really!

Javascript

ECMA-262

Site

CSS Technology SPF Record Conformant Domain
Copyright © 1994 - 2024 ZyTrax, Inc.
All rights reserved. Legal and Privacy
site by zytrax
hosted by javapipe.com
web-master at zytrax
Page modified: January 20 2022.