How to change the src (url) of a IFrame using JavaScript?
|
|
|
|
|
Question: How to change the src (url) of a IFrame using JavaScript? Answer: document.getElementById('iframe_id').src = 'newpage.html iframe_id = The ID for the IFrame newpage.html = The page that you want to load into the IFrame
|