I am coding some kind of display made of an iframe. When I click a button, which is outside the iframe, it should right something down on the iframe. Is it possible?
<iframe src = "display.html" id = "ifr"></iframe>
    <div class = "buttons" onClick = "showSequence()">
        Get the whole sequence
    </div>
The javascript code:
function showSequence(){
    var iframe = document.getElementById("ifr"); 
    (iframe.contentDocument || iframe.contentWindow.document).write("Something!");
}
 
    