Skip to content Skip to sidebar Skip to footer

How Do I Print Different Page Using Javascript/jquery/ajax?

With following code it's showing the print dialog box and print the page successfully but how do i print a different page after click on this same button ? Different page name is :

Solution 1:

If you already have the page you want to print, put that page in an hidden iframe and print the content of iframe

<iframesrc="letterprint.php"name="frame"></iframe><inputtype="button"onclick="frames['frame'].print()"value="printletter">

Solution 2:

You can't really print another page; browsers just don't give Javascript that power. However, what you can do is change the content of the page the user is on.

In short, you can use AJAX or an iframe to access the second page (letterprint.php), and then replace the contents of an element on your page with that page's contents. If you don't want it visible to the user, you can use a targeted stylesheet to make the new content only visible when printing.

Post a Comment for "How Do I Print Different Page Using Javascript/jquery/ajax?"