What i want to do:
Extract html of other domain.
What i have tried:
$.get("http://website1.com", function(data) {
alert("Data Loaded: " + data);
});
(not working)
(for example) im the owner of tow websites:
website1.com
website2.com
now i want to get the html of website1.com
and then show the html in website2.com
by using jquery or any other way (website2.com Support Client-side languages Only ,website1.com Support Php).
HOW Can I Do It(im the owner of website1 and website2)?