I have a problem when I try add event scroll with iframe tage. generally, I use scroll event with div tag It was working well. but when I add scroll event in iframe tag to detect user scroll pdf page, It was not working. why cannot I access html elements in iframe?, I have code inspect below:
and I try to add javascript scroll event with iframe :
HTML Code:
<iframe id="myframe" src="doc.pdf"></iframe>
JavaScript Code:
document.getElementById('myframe').onscroll = function(){
alert('scrolling page');
};