Possible Duplicate:
XMLHttpRequest cannot load an URL with jQuery
I am using the jquery get function to get the data with in the link
http://stormtrack.srcc.lsu.edu/php/getStormYearAsJson.php
but when I run it i am getting an error saying "xmlhttprequest cannot load". Can any one suggest me how I could parse this file to get the data.
$(document).ready(function() {
$.getJSON("http://stormtrack.srcc.lsu.edu/php/getStormYearAsJson.php", function(data){
alert("Data Loaded: " + data);
});
});