0

Following is my xmlfile

applica.luminoustec.net/file.xml

I need to access with this ajax call from my local host, all about is cross domain call

My AJAX CODE

<script type="text/javascript">
        $(document).ready(function () {

            $.ajax({
                url: "http://applica.luminoustec.net/file.xml",
                dataType: "jsonp",
                success: function (data) {
                    console.log(data);
                }
            });
        });
    </script>

following is the error

Uncaught SyntaxError: Unexpected token <

can anyone tell where i am at fault

i see this link and this link

but not succeded please help me out

Community
  • 1
  • 1
Jot Dhaliwal
  • 1,470
  • 4
  • 26
  • 47

1 Answers1

2

http://applica.luminoustec.net/file.xml is XML.

dataType: "jsonp", tells jQuery to parse it as JSONP.

XML is not JSONP. Thus, it errors.

Either:

  1. Change the URL to one which returns JSONP or
  2. Remove the dataType line and let jQuery detect it as XML (NB: This will probably require that you set up CORS support on the server).
Community
  • 1
  • 1
Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335