Interface HTMLLinkElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLLinkElement extends HTMLElement
The LINK element specifies a link to an external resource, and defines this document's relationship to that resource (or vice versa). See the LINK element definition in HTML 4.0 (see also the LinkStyle interface in the module).

See also the Document Object Model (DOM) Level 2 Specification.

Since:
1.4, DOM Level 2
  • Method Details Link icon

    • getDisabled Link icon

      boolean getDisabled()
      Enables/disables the link. This is currently only used for style sheet links, and may be used to activate or deactivate style sheets.
    • setDisabled Link icon

      void setDisabled(boolean disabled)
    • getCharset Link icon

      String getCharset()
      The character encoding of the resource being linked to. See the charset attribute definition in HTML 4.0.
    • setCharset Link icon

      void setCharset(String charset)
    • getHref Link icon

      String getHref()
      The URI of the linked resource. See the href attribute definition in HTML 4.0.
    • setHref Link icon

      void setHref(String href)
    • getHreflang Link icon

      String getHreflang()
      Language code of the linked resource. See the hreflang attribute definition in HTML 4.0.
    • setHreflang Link icon

      void setHreflang(String hreflang)
    • getMedia Link icon

      String getMedia()
      Designed for use with one or more target media. See the media attribute definition in HTML 4.0.
    • setMedia Link icon

      void setMedia(String media)
    • getRel Link icon

      String getRel()
      Forward link type. See the rel attribute definition in HTML 4.0.
    • setRel Link icon

      void setRel(String rel)
    • getRev Link icon

      String getRev()
      Reverse link type. See the rev attribute definition in HTML 4.0.
    • setRev Link icon

      void setRev(String rev)
    • getTarget Link icon

      String getTarget()
      Frame to render the resource in. See the target attribute definition in HTML 4.0.
    • setTarget Link icon

      void setTarget(String target)
    • getType Link icon

      String getType()
      Advisory content type. See the type attribute definition in HTML 4.0.
    • setType Link icon

      void setType(String type)