I need your help.
I need to disable scrolling of the iframe inside my div to use scroll of the div (I don't have the choice !). I tried overflow:hidden and scroling="no" but nothing is working.
Thanks for your help.
<div id="divPDF" style="overflow:scroll;">
<iframe id="framePDF" width="100%" src="data:application/pdf;base64,some64code ..." scrolling="no" style="overflow:hidden;">
</iframe>
</div>