HTMLAnchorElement.toString()
The HTMLAnchorElement.toString()
stringifier
method returns a USVString
containing the whole URL. It is a read-only
version of HTMLAnchorElement.href
.
Syntax
anchor.toString();
Examples
Calling toString on an anchor element
// An <a id="myAnchor" href="/en-US/docs/HTMLAnchorElement"> element is in the document
const anchor = document.getElementById("myAnchor");
anchor.toString(); // returns 'https://developer.mozilla.org/en-US/docs/HTMLAnchorElement'
Specifications
Specification |
---|
HTML Standard # dom-hyperlink-href-dev |
Browser compatibility
BCD tables only load in the browser
See also
- The
HTMLAnchorElement
interface it belongs to.