1

I trying to build website based on images. That's why I am trying to disable user's print screen through JavaScript. But it is not working in all browsers.

Robert Christopher
  • 4,940
  • 1
  • 20
  • 21
  • 2
    Possible duplicate of: http://stackoverflow.com/questions/3130983/stop-user-from-using-print-scrn-printscreen-key-of-the-keyboard-for-any-we – Syed Ali Taqi Sep 04 '14 at 09:21

2 Answers2

2

You can't. It's beyond your control, because print screen is not a browser feature it's a system feature.

Edi G.
  • 2,432
  • 7
  • 24
  • 33
1

eventually, you could listen keydown, if printscreen key code is catchable, you could display a full white element over everything so it would print a white screen...

dmidz
  • 896
  • 7
  • 20