MDN Web Docs

Value

A string.

Examples

Full URL with path

js

const url = new URL(
  "https://developer.mozilla.org/en-US/docs/Web/API/URL/href",
);
console.log(url.href); // https://developer.mozilla.org/en-US/docs/Web/API/URL/href

Origin-only URL

For hierarchical schemes such as https:, the pathname must always be non-empty. When the URL has no path (for example, only an origin), the URL parser sets the pathname to "/", so href includes a trailing slash. See the pathname property for more details.

js

const url = new URL("https://developer.mozilla.org");
console.log(url.href); // https://developer.mozilla.org/

Specifications

Specification
URL
# dom-url-href

Browser compatibility

See also

Help improve MDN

Yes No

Learn how to contribute

This page was last modified on by MDN contributors.

Read the original on developer.mozilla.org ↗