i have the following javascript in my webpage:
var xhr = new XMLHttpRequest(); xhr.open(\'GET\', \'http://www.google.com\', true); xhr.onreadystatechange = funct
You can't do cross-domain requests with javascript. The best way round this is to use your server as a proxy.