Archive for 'JavaScript'
Scraping web pages in JavaScript with Perl
Sometimes you want to scrape Webpages which contain JavaScript and therefore resist beeing scraped with Web::Scraper or the likes. Imagine some JavaScript code like the following to disguise a email address.
function mail() {
var name = “mail”;
var domain = “example.com”;
var mailto = ‘mailto:’ + [...]
Posted: November 18th, 2010 under JavaScript, Perl.
Comments: none