0
Using JQuery $.ajax
Want to learn more?
Click Here to Read more about "Using JQuery $.ajax" >>
Click Here to Read more about "Using JQuery $.ajax" >>
With JQuery, you can easily make ajax calls to load data from an external page or service. The code below should get you started. The JQuery $.ajax function is incredibly powerful. Over the next few days we will be covering more advanced uses of the $.ajax function.
$.ajax({
url: ‘Url of page you want to load here’
success: function(data){
processData(data);
};
});
function processData(data){
$xmlData = $(data);
alert($xmlData);
});
Related posts: