I have a problem when I try to add an event scroll with iframe tage. I usually use a scroll event with a div tag. He worked well. but when I add a scroll event to the iframe tag to define the user's scroll page, this does not work. why can't I access the html elements in the iframe ?, I have the code check below:

and I'm trying to add a javascript scroll event with iframe:
HTML code:
<iframe id="myframe" src="doc.pdf"></iframe>
JavaScript Code:
document.getElementById('myframe').onscroll = function(){ alert('scrolling page'); };
javascript jquery html css iframe
Devscripts
source share