<script>
jQuery("iframe").load(function() {
console.log('can you hear me?');
$('iframe').contents().find('#findme').html('lorium ipsom');
});
</script>
I am having trouble getting this to work. I am trying to find a div inside of an iframe (on the same server) and then inject some html in there.
Any thoughts?