I am trying to load a PDF within an iframe
and have to execute few events only when PDF has been loaded. (Note: By PDF getting loaded, I mean PDF contents are visible on screen not the initializing/loading progress bar of Adobe reader).
I am using the following code for now:
<iframe id="iframe" src="http://somedomain.com/somfilePatf/someFile.pdf">
I have tried onload
event for iframe
but it triggers as soon as page renders the iframe
(not when iframe
content is completely loaded).
Please help me on the same.