LinkElement
The HTMLLinkElement interface represents reference information for external resources and the relationship of those resources to a document and vice-versa. This object inherits all of the properties and methods of the HTMLElement interface.
Documentation HTMLLinkElement by Mozilla Contributors, licensed under CC-BY-SA 2.5.
Instance Members
disabled: BoolIs a Boolean which represents whether the link is disabled; currently only used with style sheet links.
href: StringIs a DOMString representing the URI for the target resource.
crossOrigin: StringIs a DOMString that corresponds to the CORS setting for this link element. See CORS settings attributes for details.
rel: StringIs a DOMString representing the forward relationship of the linked resource from the document to the resource.
relList: DOMTokenListIs a DOMTokenList that reflects the rel HTML attribute, as a list of tokens.
media: StringIs a DOMString representing a list of one or more media formats to which the resource applies.
hreflang: StringIs a DOMString representing the language code for the linked resource.
type: StringIs a DOMString representing the MIME type of the linked resource.
referrerPolicy: StringIs a DOMString that reflects the referrerpolicy HTML attribute indicating which referrer to use.
sizes: DOMTokenListIs a DOMSettableTokenList that reflects the sizes HTML attribute, as a list of tokens.
charset: StringIs a DOMString representing the character encoding for the target resource.
rev: StringIs a DOMString representing the reverse relationship of the linked resource from the resource to the document.
Note: Currently the W3C HTML 5.2 spec states that rev is no longer obsolete, whereas the WHATWG living standard still has it labeled obsolete. Until this discrepancy is resolved, you should still assume it is obsolete.
target: StringIs a DOMString representing the name of the target frame to which the resource applies.
integrity: Stringas: StringIs a DOMString representing the type of content being loaded by the HTML link.
sheet: StyleSheet