-1

Designing html for printing in iframe with onload event in body tag. i want to prevent popup print preview dialog or close automatically when open, but not getting any success yet.

i have tried with remove remove attibute, unbind, off.

anybody have idea to do it?

Mehul Prajapati
  • 33
  • 1
  • 11
  • Possible duplicate of [How to stop user from printing webpages? using javascript or jquery](https://stackoverflow.com/questions/6647392/how-to-stop-user-from-printing-webpages-using-javascript-or-jquery) – 4b0 Jan 11 '18 at 08:11

1 Answers1

0

You can't prevent the print pop, but you can use print @media CSS to hide

@media print {
  html, body {
    display: none;  /* hide whole page */
  }
}
Wing Li
  • 1
  • 1