A
Alejandro Rivero
I am a bit puzzled with Firefox 2.0.0.13
I have a page http://xxx.yyy.com/here/whatever.html and it must do the
usual thing, to fetch something from http://yyy.com/there.xml
so
document.domain = "yyy.com";
reql= new XMLHttpRequest();
req.open("GET", "http://yyy.com/there.xml");
req.send();
fails in the req.open. WTF?
I have a page http://xxx.yyy.com/here/whatever.html and it must do the
usual thing, to fetch something from http://yyy.com/there.xml
so
document.domain = "yyy.com";
reql= new XMLHttpRequest();
req.open("GET", "http://yyy.com/there.xml");
req.send();
fails in the req.open. WTF?