The href
property of the HTMLLinkElement
interface contains a string that is the URL associated with the link.
It reflects the href
attribute of the <link>
element. If the element does not have an href
attribute, then this property's value is the empty string (""
).
Note: Every <link>
element must contain either one or both of the href
or imagesrcset
attributes. This means, for each valid <link>
, either this property or imageSrcset
will not be empty.