GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTML::DOM::NodeList::Magic(3) User Contributed Perl Documentation HTML::DOM::NodeList::Magic(3)

HTML::DOM::NodeList::Magic - Magical node list class for HTML::DOM

Version 0.058

  use HTML::DOM;
  $doc = HTML::DOM->new;

  $list = $doc->getElementsByTagName('p');
    # returns an HTML::DOM::NodeList::Magic object

  # OR:
  use HTML::DOM::NodeList::Magic;
  $list = new HTML::DOM::NodeList::Magic::
      sub {
          # ... return a list of items ...
      },
      $doc;
    
  $list->[0];     # first node
  $list->item(0); # same
  
  $list->length; # same as scalar @$list

See HTML::DOM::NodeList both for a description and the API.

There is one difference, though: If you want to create a NodeList yourself, for whatever reason, you can call the constructor shown in the synopsis. The subroutine has to return the entire list that the node list is supposed to contain. The second argument is the document to which the node belongs. If the document is modified, the node list is automatically notified, and calls the subroutine again the next time it is accessed, to reset itself. If you don't provide the document, the node list will never be updated after the first time an element is accessed.

HTML::DOM

HTML::DOM::NodeList

2018-02-02 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.