Michał Kalbarczyk

Cross Domain Request

3 January 2007

Cross Domain Request

Using this object you can make cross domain requests. Server side php script could be placed in any domain and any server that supports curl, fopen. You can also make your own server side script in any language.

crossDomainRequest.request(
  'http://ws.audioscrobbler.com/1.0/user/RJ/profile.xml',
  function(resp){
    alert(resp)
  }
);

Available here.