Answers for "show website within a website"

2

how to show other website inside my website

<iframe src="http://www.codegrepper.com" width= 600px height=200px></iframe>
Posted by: Guest on August-25-2020
0

open a website within a website

javascript
$("#button").click(function () { 
      $("#iframe").attr("src", "http://www.google.com/");
});
html
<iframe id="iframe" src="" width="100%" height="400"></iframe><button id="button">Load</button>
Posted by: Guest on May-03-2021

Code answers related to "show website within a website"

Browse Popular Code Answers by Language