Is is even possible? or does it require a server?
$.get("http://xxxxx.com", function (data) {
alert(data);
});
That's all I got but it doesn't print out anything.
Is is even possible? or does it require a server?
$.get("http://xxxxx.com", function (data) {
alert(data);
});
That's all I got but it doesn't print out anything.
Sorry but You can not retrieve data from a different domain using jquery Due to browser security restrictions.
Yes you can use other scripts like perl to scrap html data from third party url.
by using jquery and ajax you do retrieve data from your own web-site.