tags:

views:

32

answers:

1

How do i get full html content of a remote url using jquery

+1  A: 

You can't do it directly - AJAX requests are only allowed to the same domain as your site content. There are many work-arounds however, have a look at this article for an overview. Your best bet would be to create a "service" on your server that will download the content on behalf of an AJAX request.

Justin Ethier