|
NAMEHTML::DOM::Element::Script - A Perl class for representing 'script' elements in an HTML DOM tree VERSIONVersion 0.054 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
DESCRIPTIONThis class implements 'script' elements in an HTML::DOM tree. It implements the HTMLScriptElement DOM interface and inherits from HTML::DOM::Element (q.v.). METHODSIn addition to those inherited from HTML::DOM::Element and its superclasses, this class implements the following DOM methods:
SEE ALSOHTML::DOM HTML::DOM::Element
|