Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open PDF in new browser full window

How do I open PDF document in new browser window?

The window should be full and withouth menu.

Just a PDF document in a clean full window with native Javascript or jQuery.

like image 996
mojeime Avatar asked Jan 19 '11 13:01

mojeime


People also ask

How do I get a PDF to open in full screen?

To view a document in full screen view. Click Full Screen View on the View menu. Alternatively, press CTRL + L. Acrobat displays the document in full screen view.

How do I get a PDF to open in a new window instead of tab?

Launch a PDF>Navigate to Edit>Preferences>General>Uncheck the option "Open documents as new tabs in same windows" and then relaunch Acrobat. You would now see PDF' opening in new Windows and not in a tabbed format in the same window.

How do I open a PDF in a new browser?

Step 1: Open the Internet Explorer. Step 2: Click on Tools and then select "Manage Add-ons". Step 3: When a window on add-on types appears choose toolbars and extensions. Choose the option of all add-ons and then select "Adobe PDF Reader" from the list of add-ons.


1 Answers

<a href="#" onclick="window.open('MyPDF.pdf', '_blank', 'fullscreen=yes'); return false;">MyPDF</a> 

The above link will open the PDF in full screen mode, that's the best you can achieve.

like image 129
Shadow Wizard Hates Omicron Avatar answered Sep 18 '22 08:09

Shadow Wizard Hates Omicron