HTML DOM Link href Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Link href Property

❮ Link Object

Example

Return the URL of the linked document:

var x = document.getElementById("myLink").href;
Try it Yourself »

Definition and Usage

The href property sets or returns the URL of a linked document.


Browser Support

Property
href Yes Yes Yes Yes Yes

Syntax

Return the href property:

linkObject.href

Set the href property:

linkObject.href = URL

Property Values

Value Description
URL Specifies the URL of the linked resource/document

Possible values:
  • An absolute URL - points to another web site (like href="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like href="default.htm")

Technical Details

Return Value: A String, representing the URL of the linked document. Returns the entire URL, including the protocol (like http://)

More Examples

Example

Change style sheet:

document.getElementById("myLink").href = "style2.css";
Try it Yourself »

Related Pages

HTML reference: HTML <link> href attribute


❮ Link Object