skip to Main Content

when I display a pdf file in iframe, I want the toolbar to be displayed, but it does not have download and print options, please guide me.
Finally, I want to have the toolbar, but without download and print options

<!DOCTYPE html>
<html lang="en">
  <body style="margin: 0px; padding: 0px; overflow: hidden">
    <iframe src="https://www.africau.edu/images/default/sample.pdf"
    style="
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  "
  width="100%" height="100%" type='application/pdf' >
</body>
</html>

2

Answers


  1. If the content of an iframe is from a different domain than the parent page, it is not possible to access and edit it directly. Web browsers impose this limitation, known as the Same-Origin Policy, for security concerns.

    you can hide the toolbar but not only print and download buttons.

    Previous Thread

    Login or Signup to reply.
  2. The Use of the Adobe Signal Toolbar=0 should be considered like other features as an "Advisory Hint" to the downloaded PDF file in the clients editor.

    It does not have to be honoured by Adobe Plugin (Or any other browser PDF viewer) as the toolbar is often needed for Read Aloud or many other Functions here showing Adobe Sign In.

    In some simpler chrome cases it may be removed from the view area but the user can switch it back on in different ways.

    enter image description here

    enter image description here

    Removing the Toolbar is AntiSocial (even in Kiosks where its intended for banner free presentations) as it disadvantages those that need to see the Read Aloud or other functions such as kiosk printing.

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search