![]() |
mail us
|
mail this page products | company | support | downloads | isp services | contact us |
W3C HTML Reference. Part of the HTML Interface
HTMLAnchorElement
The Anchor HTML element may be defined in HTML using <a></a>, or dynamically using the createElement method of a Node. An HTLAnchorElement is discovered when it returns the value "a" when a node's nodeName atrribute is inspected.
// create HTMLAnchorElement
anchor = document.createElement{"a");
// discover HTMLAnchorElement
if(somenode.nodeName == "a"){
// now use HTMLAnchorElement methods and properties
href = anchor.href;
}
createElement, createTextNode methods
// get reference to existing anchor element
// defined as <a id="our-home" href="http://www.zytrax.com">home</a>
anchor = document.getElementById("home";
hs = anchor.href; // hs = "www.zytrax.com"
vs = anchor.childNodes[0].data; // vs = "home"
is = anchor.childNodes[0].data; // is = "our-home"
// create the above anchor dynamically
anchor = document.createElement("a");
anchor.href = "www.zytrax.com";
anchor.id = "our-home";
hometext = document.createTextNode("home");
anchor.appendChild(hometext);
// stick it onto an existing element
obj = document.getElementById("links");
obj.appendChild(anchor);
The first fragment shows obtaining a reference to an anchor element defined statically in the HTML page, the second creates the same anchor using javascript DOM API methods and attributes and appends it to an existing object in the page with an id="links". This last fragment also illustrates how the 'clickable'/visible text is created for an anchor with the textnode.
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 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
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
W3C HTML 4.01
HTML5 (WHATWG)
W3C Page Validator
W3C DOCTYPE
W3C XHTML Basic
W3C XHTML 1.1
W3C CSS1
W3C CSS2.1
W3C DOM
W3C DOM Events
Gecko DOM
MSIE DOM
usability.gov
W3C -WAI
Web Style Guide
Michael L Bernard
WebAim.org
Peter-Paul Koch
A List Apart
Eric Meyer on CSS
glish.com
DOCTYPE definitions
Our DOM Pages
DOM User Guide
DOM Explorer
DOM Navigation
CSS Short Cuts
CSS Techniques
CSS overview
Oh Really!
webmasterbase.com
Brainjar Menubar
Our Lite JS Menus
Our CSS Menus
Tigra Menus
|
Copyright © 1994 - 2008 ZyTrax, Inc. All rights reserved. Legal and Privacy |
site by zytrax![]() |
web-master at zytrax Page modified: June 03 2007. |