I used the following code, but I got the error
$(document).ready(function () {
var jqxhr = $.get("www.goalzz.com", function () {
alert("success");
})
.done(function () {
alert("second success");
})
.fail(function () {
alert("error");
})
.always(function () {
alert("finished");
});
});
Do read the html code with jQuery is possible?