<iframe id="frame" style=" width:100%; height: 700px; margin:30px 0 0 0px;
border-style: none; " src="" ></iframe>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var x = document.getElementById("frame");
var y = x.contentDocument;
if (y.document)y = y.document;
y.body.style.backgroundColor = "red";
// alert("c");
// window.alert(5 + 6);
x.src="some_link";
//document.write("k");
var xx = document.getElementsByClassName('nav-link');
//alert(xx);
var j = 0;
while (xx[j]){
xx[j].setAttribute('href', '');
alert("h"+j);
j++;
}
}
</script>
var xx = document.getElementsByClassName('nav-link'); There is error in this line i guess. Not able to retrieve the links.