-1

I have a trouble with an AJAX script, when i try to parse the XML file from internet, there's no response. http://pastebin.com/hGe7siBB I just want to parse a XML file from internet. PD: Gotta work for JQuery mobile.

Syxkno
  • 47
  • 1
  • 5
  • You can't directly access the XML data of external site using Ajax (Cross Domain Ajax). You can use a proxy on the server side. http://stackoverflow.com/questions/3506208/jquery-ajax-cross-domain – Chandu Nov 13 '12 at 01:25
  • Cross Origin Resource Sharing. – Ohgodwhy Nov 13 '12 at 01:29

1 Answers1

0

You are most likely running into problems with the Same Origin Policy.

http://en.wikipedia.org/wiki/Same_origin_policy

0x90
  • 6,079
  • 2
  • 36
  • 55