Load page in div when i click button [closed]

Use an iframe

<iframe id="iframe1" ></iframe>

Use Js to change the src i.e

document.getElementById(‘iframe1’).src = yourpagepath;

Thanks

Leave a Comment