in reply to Re: Problems with cruft-finding script
in thread Problems with cruft-finding script

Ah, from the author himself. :) Yes, you're right - I thought I read the docs carefully, but I missed that. :( So I suppose a good way to get the IMG SRCs is:

foreach(@{$LX->links}) { if ($$_{tag} eq 'img') { push @allLinks, $URI->new_abs($$_{src}, $base); } # do other stuff }
Being a bit of a Perl n00bie, I did not think to use Data::Dumper. Thanks for expanding my mind. :)