i am using #toolbar=0&navpanes=0&scrollbar=0
in iframe url for disabling toolbar but in Mozzila it doesn't work. I tryed to import javascript into iframe, but the same result....
iframe:
<iframe ?wmode="transparent" type="application/pdf" id="iframe" src="'.$url.'#toolbar=0&navpanes=0&scrollbar=0" width="100%" height="685"></iframe>
used js:
jQuery('#iframe').load(function(){
jQuery('#iframe').contents().find("#toolbarViewerRight").hide();
});
Any idea, how can i disable/remove/hide this toolbar or only download button?