I managed to style the third-party-generated iframe in my page but can't style anything inside it. I can't figure out why the code below doesn't do anything:
jQuery(window).load(function() {
var $ = jQuery;
setTimeout(function() {
$('.mailmunch-embedded-iframe').find('#mailmunch-optin-form').css('border', '10px solid blue');
}, 1000);
});
If I remove find('#mailmunch-optin-form')
in order to apply this code to the iframe itself it works. But for something inside it, it doesn't. What's going on?