How to disable printscreen button in mozila firefox using javascrip
Hi Friends,
i have done sucessfully disable printscreen in IE only
now i want to disable in Firfox
any one knows please share with me
my javascript code is
function do_err()
{
return true
}
onerror=do_err;
function no_cp()
{
clipboardData.clearData();setTimeout("no_cp()",100)
}
no_cp();
<HTML>
<HEAD>
<!-- (c) 1998-2010 ArtistScope (www.artistscope.com) -->
<SCRIPT SRC="no-printscreen.js"></SCRIPT>
</HEAD>
<BODY>
This printscreen test file
</BODY>
</HTML>
i m waiting for u r valuable replays Thanks Venkat.S