How to remove a specific item in an iFrame

I have a website that has an iFrame. IFrame linked to an external page. I want to remove some elements on an external website (the website has HTML encoding) using Javascript (other methods are also OK) WITHOUT anyone who clicks on any delete or do something buttons, so he should AUTOMATICALLY remove this element when my webpage and iframe load, no one can see it. For example, I want to remove the site logo and some content. I tried many methods, but they do not work in iFrame.

+5
source share
1 answer

Unfortunately, you cannot access the elements in the iframe, if the Iframe is linked to an external site, there is no workaround using javascript.

+3
source

All Articles