Is it possible to make an AJAX call that returns HTML and not have the browser also return all the associated resources (images, CSS etc)? I just want the HTML, but can see from the Network log that all the images are being retrieved too
$.ajax({
url: theUrl,
cache: false,
accepts: "text/html"
})
.done(function(html) {
// some parsing here
});