Click here to Skip to main content
15,911,142 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi there,

is there any way in javascript or jquery to restrict user from taking screen shot I searched much and got this thing only.

C#
window.addEventListener("keyup",kPress,false);
function kPress(e)
{
var c=e.keyCode||e.charCode;
if (c==44)
{
 alert("print screen");

 }
}



Thanks
Posted
Comments
Sergey Alexandrovich Kryukov 14-Jan-13 1:48am    
Why would you restrict it, ever?
—SA
NAPorwal(8015059) 14-Jan-13 2:02am    
so that images of client's portfolio which he had been created for demo and sell should not be taken.

1 solution

Just think a bit, and you will see it: if a user sees something in the browser, its is already on the client side. It's too late to "restrict" anything. And hardly may make any sense.

—SA
 
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