Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need to take print out of pdf file from iframe container tag of HTML page:

I am caling following code to take print on Html button click using javascript

JavaScript
document.getElementById("Idname").focus();
window.print();

these code successfully working in ie8 but not working in google chrome how we can
do it successfully in google chrome
Please help me..............
Posted
Updated 17-Sep-12 0:45am
v3

1 solution

Hi rajanngnagarajan i think you just need window.print() to print the page in chrome, and then use CSS to get selected element to be printed and others to be hidden.

CSS
 <style type="text/css">
   @media print
{
    #non-printable { display: none; }
    #printable { display: block; }
}
 </style>


Hope this help you
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900