Disabling the print screen option

  • Thread starter Thread starter Ravindra
  • Start date Start date
R

Ravindra

Hi all
I want to disable the print screen option for my web page. can anyone help
to solve this problem.It is urgent.please
regards
ravindra
 
You can handle onbeforeprint and onafterprint events to do all sort of
tricks, but you can't stop the user from taking a copy of your browser
screen and pasting it to some other window.

Eliyahu
 
Hi all
I want to disable the print screen option for my web page. can anyone help to
solve this problem.It is urgent.please
regards
ravindra

Probably this works in the css:

@media print
{
body { display: none; }
}

but this will only prevent "regular printing" (prints a blank page),
but will not prevent a "printscreen".

Hans Kesting
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top