AJAX Query
AJAX Query
Hi,
I have a simple web application that uses ajax to get some XML from a remote site. The problem is that it does not work. Could you please provide any pointers.
url="http://www.islamicfinder.org/prayer_service.php?country=united_kingdom&city=london_borough_of_lambeth&state=H1&zipcode=&latitude=51.4167&longitude=-0.1333&timezone=0&HanfiShafi=1&pmethod=1&fajrTwilight1=10&fajrTwilight2=10&ishaTwilight=10&ishaInterval=30&dhuhrInterval=1&maghribInterval=1&dayLight=1&simpleFormat=xml"
$('a').click(function(e) {
// stop normal link click
e.preventDefault();
$.ajax({
url: url,
processData: false,
data: xml,
success: function(){
alert('The ajax call work');
}
});
});
<a href=""></a>
Thanks