Is there a way to use XMLHttpRequest in combination with other domains?
I would like to parse some xml from Google without having to use a server so it is minimalistical
That's not possible due to the SOP (Same Origin Policy) that browser have these days to restrict XSS attacks. You will have to use a server side script (PHP or something).