Skip to content Skip to sidebar Skip to footer

How To Use Javascript To Popup A New Window With Nearly The Same Html As Its Parent Window

I want to create multiple versions of print-friendly pages from a single page. I am considering to do it in this way: placing several buttons on the original page and, clicking one

Solution 1:

You could pass an additional parameter to the current page's url and open it in a new window, like this:

window.open(document.location.href + "?print=true");

You can then read the URL parameter in JavaScript and do the necessary hiding and CSS alterations to make the document print friendly.

Speaking of which: Why not use a print-only CSS that does this for you? Then all you need to do in your code is:

window.print();

And in your document HEAD:

<link rel="stylesheet" href="yourcssfile.css" media="print" /> 

And the CSS will make sure the page looks the way you want to in print. See this article for more about printing in CSS.

Solution 2:

Yes, it's possible to setup javascript code to to this, something like:

window.open('myPage.html')

getElementById('<someid>').style.display = none

However, you may want to look into CSS print stylesheets, which allow to use CSS to specify the div hidings and whatnot. It has the advantage of not forcing the user to open a pop-up window and not taking the second page-load hit on your server. I found this article to be a good place to get started.

Basically, to add a print you setup a link like this:

<linktype="text/css" media="print" href="myPrintStyles.css"/>

Post a Comment for "How To Use Javascript To Popup A New Window With Nearly The Same Html As Its Parent Window"