Hello
I have an Iframe that has an image and I would like to remove it, but it is not working ...
<script>
$( document).ready(function() {
$(document).find("img[src='/assets/online/cf_logo-9733d198a764182fc89bc38518f73f91efd7a413394b1ca263e8ba4774ed8b5b.png']").hide();
});
</script>
If I inspect the image and paste the .hide () line on the console, it hides. If I do not inspect the image and paste, nothing happens as well as when I load the page
Any suggestions?
Thank you