I have seen all the posts in the forum, but I did not find an answer, the posts are very old. I need to load an external webpage in a div of another website. In my local site I have this script:
<script type="text/javascript">
$(document).ready(function() {
$('#content').load('divelencoarticoli.html');
});
</script>
in the body
<div style="width: 100%" id="content">Initial content in test.html</div>
but the external webpage does not load.
The page for external load is on another site of my server (its my another website) and there is no problem of safety. Thanks in advance.