Answers for "iframe event attributes"

3

how to add event listener to iframe

var iframe = document.getElementById('myIFrame');
iframe.contentWindow.body.addEventListener('mouseup', Handler);

function Handler() {
    alert('works');
}
Posted by: Guest on July-18-2020
7

iframe attributes

<iframe width="560" height="315" src="https://www.youtube.com/embed/owsfdh4gxyc" frameborder="0" allowfullscreen></iframe>
Posted by: Guest on April-15-2020

Browse Popular Code Answers by Language