How do I connect to another location
I want to download data from an external site
i want to include it in site my
Used this
<head>
<script>
$(function(){
$.ajax({
url: "https://www.google.com.sa" ,
datatype: "html",
success : function(){
$("#abc").append(data);
}
});
});
</script>
</head>
<body>
<div id='abc'></div>
</body>
But did not succeed
I tried this
<script>
$(function(){
$("#abc").load("http://google.com");
});
</script>
But did not succeed
I want to download data from an external site
Correctly ??
But how??