Is it possible to do something like this in javascript:
var aString = getURL("http://www.somesite.com/somepage.cgi");
and have "aString" end up containing the content of the URL?
*NOTE: getURL() does not exist (as far as I know), I just created it as an example of what I want to do. Don't tell me "just use the getURL function in your example", please.
var aString = getURL("http://www.somesite.com/somepage.cgi");
and have "aString" end up containing the content of the URL?
*NOTE: getURL() does not exist (as far as I know), I just created it as an example of what I want to do. Don't tell me "just use the getURL function in your example", please.