Javascript access another webpage
I know very, very little of javascript, but I'm interested in writing a script which needs information from another webpage. It there a javascript equivalent of something like urllib2? It doesn't need to be very robust, just enough to process a simple GET request, no need to store cookies or anything and store the results. Daniel Vassallo There is the XMLHttpRequest , but that would be limited to the same domain of your web site, because of the Same Origin Policy . However, you may be interested in checking out the following Stack Overflow post for a few solutions around the Same Origin Policy