5 results
tagged
ajax
Getting Started With jQuery - Ajax The Basics
Wanting to make use of Ajax is one of the prime reasons for adopting jQuery.
$.get("mydata.txt").then(
function (data) {
alert(data);
},
function () {
alert("error");
})
.always(
function () {
alert("cleanup");
});
November 17, 2021 at 11:58:35 AM EST
*
FILLER