The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

HTML::DOM::Element::Link - A Perl class for representing 'link' elements in an HTML DOM tree

SYNOPSIS

  use HTML::DOM;
  $doc = HTML::DOM->new;
  $elem = $doc->createElement('link');

  $elem->charset('iso-8859-1'); # set attribute
  $elem->href;                  # get attribute
  $elem->tagName;
  # etc

DESCRIPTION

This class implements 'link' elements in an HTML::DOM tree. It implements the HTMLLinkElement DOM interface and inherits from HTML::DOM::Element (q.v.).

METHODS

In addition to those inherited from HTML::DOM::Element and its superclasses, this class implements the following DOM methods:

disabled

Returns a boolean. Pass an argument to set it.

charset
href
hreflang
media
rel
rev
target
type

Each of these returns the corresponding HTML attribute. If you pass an argument, it will become the new value of the attribute, and the old value will be returned.

sheet

Unless the 'rel' attribute is set to 'stylesheet', this returns null.

Otherwise it returns a style sheet (a CSS::DOM object), empty by default (since fetching URLs is something HTML::DOM doesn't do). You can set the contents of the style sheet by passing CSS code to its read_string method.

SEE ALSO

HTML::DOM

HTML::DOM::Element