I would like to change the css from a iframe with jQuery. I used the following code:
Iframe:
<iframe id="myiframe" src="https://source.com"></iframe>
jQuery:
jQuery("#myiframe").contents().find("body").css('background-color', 'black');
But when I run the code, comes the following console error
Uncaught DOMException: Failed to read the 'contentDocument' property from 'HTMLIFrameElement': Blocked a frame with origin "https://example.com" from accessing a cross-origin frame.
Who has the solution to my problem?