HTML:
<iframe src = "https://newsela.com"></iframe>
I don't want the menu that's shown above.
Is there a way to do that with JavaScript or jQuery?
HTML:
<iframe src = "https://newsela.com"></iframe>
You can do something like that :
var myIFrame = document.getElementById("my_iframe");
var content = myIFrame.contentWindow.document;
content.getElementById("header").style.display = "none";
You will have to do a proxy on your server to have the same domain name