Wes
Wes

Reputation: 1854

jQuery AJAX get request - cannot see returned data

I think I am missing something obvious here, but I can't figure it out. I expect the following HTML to alert a response from the server. But, the alert is empty. I can see in Wireshark that the expected response is coming back to me from the server. Why is it not populated in the data variable?

<html>
<head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript">
  $.get("http://www.geocommunicator.gov/TownshipGeocoder/TownshipGeocoder.asmx/GetTRS",
        {'Lat': 41,
         'Lon': -93,             
         'Units': 'eDD',
         'Datum': ''},      
        function(data) {
            alert('data:'+data);
        });
</script>
</body>
</html>

Upvotes: 3

Views: 203

Answers (1)

x1a4
x1a4

Reputation: 19496

Cross site protection.

You'll need to use jsonp.

Upvotes: 1

Related Questions