$.getJSON(siteAddress, function(data) {
$.each(data.items, function(i, item) {
$(".test").text(item);
});
});
I've tried this too:
$.ajax({
type: "GET",
url: site,
dataType: "html",
success: function(msg) {
alert(msg);
}
});
Also I tried doing an XMLHttpRequest() an nothing happens. Any Ideas why?

New Topic/Question
Reply



MultiQuote





|