I was reading something about Ajax and jQuery and I saw this code:
$.ajax({
url: "test.html",
cache: false
}).done(function( html ) {
$("#results").append(html);
});
I don't see anywhere the declaration of "html", how will the code know what to append?
P.S. It might be a stupid question, but i didn't find the answer to this question anywhere :/