Venkat S

Venkat S

  • 1.4k
  • 234
  • 200.1k

How to disable printscreen button in mozila firefox using javascrip

Jul 21 2011 2:26 AM
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


Answers (1)