HTML::DOM::Element::Script - A Perl class for representing 'script' elements in
an HTML DOM tree
use HTML::DOM;
$doc = HTML::DOM->new;
$elem = $doc->createElement('script');
$elem->charset('utf-8') # set attribute
$elem->src; # get attribute
$elem->tagName;
# etc
This class implements 'script' elements in an HTML::DOM tree. It implements the
HTMLScriptElement DOM interface and inherits from HTML::DOM::Element (q.v.).
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.
HTML::DOM
HTML::DOM::Element