iframe
要素を使用せずに、レスポンシブWebサイトをHTMLページのdivに読み込む必要があります。
このリンク ;を試しました。スクリプトで説明した単一のページURLで機能しています。
$('#mydiv').load('http://localhost/qa/ask#external-div', function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
alert(msg + xhr.status + " " + xhr.statusText);
}
});
シンプルなhtmlを使用して、
<div>
<object type="text/html" data="http://validator.w3.org/" width="800px" height="600px" style="overflow:auto;border:5px ridge blue">
</object>
</div>
またはjquery、
<script>
$("#mydiv")
.html('<object data="http://your-website-domain"/>');
</script>