The Wayback Machine - https://web.archive.org/web/20150921063311/https://developer.mozilla.org/en-US/docs/Web/API/URLUtils/href

URLUtils.href

by 5 contributors:

The URLUtils.href property is a DOMString containing the whole URL.

Note: This feature is available in Web Workers.

Syntax

string = object.href;
object.href = string;

Examples

// Lets an <a id="myAnchor" href="https://developer.mozilla.org/en-US/URLUtils.href"> element be in the document
var anchor = document.getElementByID("myAnchor");
var result = anchor.href; // Returns:'https://developer.mozilla.org/en-US/URLUtils.href'

Specifications

Specification Status Comment
URL
The definition of 'URLUtils.href' in that specification.
Living Standard Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support Not supported [1] 22 (22) [1] Not supported [1] Not supported [1] Not supported [1]
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support Not supported [1] Not supported [1] 1.0 (1.9.1) [1] Not supported [1] Not supported [1] Not supported [1]

[1] Though not grouped in a single abstract interface, this method is directly available on the interfaces that implement it, if this interface is supported.

See also

  • The URL interface it belongs to.

Document Tags and Contributors

Contributors to this page: Sebastianz, chrisdavidmills, teoli, kscarfone, Kartik_Chadha
Last updated by: Sebastianz,