JavaScript running to the server
JavaScript continues to get more talk on the server (yes, years after Netscape Enterprise Server!).
John Resig spent a weekend hacking in the zone, to bring the browser to the server.
This resulting environment allows you to do interesting things such as:
Screen scraping
PLAIN TEXT
JAVASCRIPT:
load(”env.js”);
window.location = “http://alistapart.com/”;
window.onload = function(){
load(”dist/jquery.js”);
print(”Newest A List Apart Posts:”);
$(”h4.title”).each(function(){
print(” - ” + this.textContent);
});
};
Web [...]
More: continued here
Leave a Reply
You must be logged in to post a comment.