Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 382 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 382 Bytes

IframeSourceJquery

now you don't need iframe

<body onload="docs()">
<div id="docs"></div>
<script>
     function docs() {
     $.get('SITE_LINK', function(data) {
          $('#div').html(data);
document.getElementById("docs").innerHTML = data

        });
     }
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</body>