NAME

HTML::DOM::Element::Script - A Perl class for representing 'script' elements in an HTML DOM tree

SYNOPSIS

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

  $elem->charset('utf-8') # set attribute
  $elem->src;             # get attribute
  $elem->tagName;
  # etc

DESCRIPTION

This class implements 'script' elements in an HTML::DOM tree. It implements the HTMLScriptElement 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:

text

This returns the text content of the script element. If you provide an argument, it will replace the current content, and the old content will be returned.

htmlFor
event
charset
defer
src
type

Each of these returns the corresponding HTML attribute (the 'for' attribute in the case of htmlFor). If you pass an argument, it will become the new value of the attribute, and the old value will be returned.

SEE ALSO

HTML::DOM

HTML::DOM::Element