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.
Asked
Active
Viewed 161 times
1
-
2Possible 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 Answers
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
-
1`keydown` will be fired after the screen is captured so it won't be useful. – Syed Ali Taqi Sep 04 '14 at 09:27