in reply to How to have Perlscript scrape images from a URL that has Javascript?
javascript:$URLS=[];for($i=0;$i<document.images.length;$i++)$URLS.push +(document.images[$i].src);document.write($URLS.join("<P>"));
This is all one line with no line breaks and no spaces. When you paste this into the address bar, the "javascript:" prefix is going to disappear, and you'll have to type it in again BEFORE you hit enter. Once you hit enter, it's going to show a list of URLs to every image that has been loaded on the screen. This might do exactly what you're looking for, but it's not perl code. It's Javascript. ;-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to have Perlscript scrape images from a URL that has Javascript?
by soonix (Chancellor) on Dec 16, 2019 at 09:45 UTC | |
by harangzsolt33 (Deacon) on Dec 16, 2019 at 13:49 UTC | |
|
Re^2: How to have Perlscript scrape images from a URL that has Javascript?
by Anonymous Monk on Dec 16, 2019 at 10:27 UTC |