Is it possible to load an external href src inside your iframe and then override the bg color of the external href src? Here's what I've tried:
<iframe src="https://www.externaldomain.com" style="background-color: #FFF !important;"></iframe>
Is it possible to load an external href src inside your iframe and then override the bg color of the external href src? Here's what I've tried:
<iframe src="https://www.externaldomain.com" style="background-color: #FFF !important;"></iframe>
You can try with an event with javascript or jquery. Something like this:
function changeBackground(color) {
document.body.style.background = color;
}
<BODY onload="changeBackground('red');">