[Solved] 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

7

solved Load page in div when i click button [closed]