I am tryin to include another webpage content to my webpage by this code, but it not working.
Code:<!Doctype html>
<html>
<head>
<script>
function include(destination) {
var e=window.document.createElement('script'); e.setAttribute('src',desti nation);
window.document.body.appendChild(e);
}</script>
</head>
<body onLoad="include('http://mywapsite.com');">
</body>
</html>
