Attribute Info
The attributes supported by HTMLElement the base ELEMENT_NODE (nodeType = 1).
className returns a string enclosed in double quotes definning the CSS class applied to the Element. Most, but not all HTML elements support className.
// valid className attribute in HTML <p id="one" class="mystyle"> // multiple values are allowed <p class="mystyle yourstyle"> // usage node = document.getElementById("one"); if(node.className == "mystyle"){ // gotcha }
The dir attribute defines the direction of a table or language to assist browsers in layout. It may take the values LTR (Left-to-Right) or RTL (Right-to-Left). Most but not all HTML elements support dir.
// valid dir attribute in HTML <p class="RTL">
The id attribute is a string which may be composed of the following characters. It must be unique with any document and can be used on every HTL element.
// valid id attribute in HTML <p id="a-7_Z:b.">
The langattribute is a string enclosed in double quotes defining the language being used. RFC 1766 defines the valid language codes and ISO 3166 defines two letter country codes.
// valid lang attribute in HTML <p lang="fr"> <p lang="en-Cockney">
The title attribute is a string enclosed in double quotes providing descriptive text and is frequently displayed use a 'tool tips' bubble interface on many user agents (browsers). Most but not all HTML elements support title.
// valid title attribute <p title="the first paragraph I wrote on the web">
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
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
Search
Share
Page
Resources
HTML Stuff
W3C HTML 4.01
HTML5 (WHATWG)
HTML4 vs HTML5
HTML5 Reference
W3C Page Validator
W3C DOCTYPE
CSS Stuff
W3C CSS2.1
W3C CSS2.2
Default Styles
CSS3 Selectors
CSS 3 Media Queries
CSS 3 Colors
DOM Stuff
W3C DOM
W3C DOM 3 Core
W3C 3 Events
Accessibility
usability.gov
W3C - WAI
Web Style Guide
WebAim.org
Useful Stuff
Peter-Paul Koch
A List Apart
Eric Meyer on CSS
glish.com
Our Stuff
Our DOM Pages
DOM Navigation
Liquid Layout
CSS Short Cuts
CSS overview
CSS One Page
Javascript Stuff
Site
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. |