For some time I struggled with one of those software sites. It has a console type that allows me to enter javascript and hit the start button. I need to create an iframe inside this webpage with another webpage inside it (e.g. im on thiswebsite.com/level1, and I need to create an iframe with thiswebsite.com/level2 inside it).
We tried creating an iframe as follows:
document.getElementById('someDiv').innerHTML = '<iframe src="thissite.com/level2/" height= 300 width=400>';
However, this does not work when I try to do this, is there an alternative way? Thank.
source
share