I want to load the page from the external url in the div without IFrame or object, I need the alternate way for it. Can any one help me out.
It works only when i use Iframe or object.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Test page</title>
<script src="https://code.jquery.com/jquery-1.7.2.min.js"></script>
<script>
$(document).ready(function() {
$("#siteloader").load( "https://www.w3schools.com" );
});
</script>
</head>
<body>
<div id="siteloader"></div>
</body>
</html>