Jump to content

Disable Clipboard


jeeva

Recommended Posts

Hi frnds

 

I need to protect my site content. In order to do that i have to disable the clipboard from

storing the data while user do copy and print screen.

i have a javascript code to disable clipboard but its working only in IE browser.

Code:

<script language="javascript">
function clearData(){
window.clipboardData.setData('text','') 
}
function ccd(){
if(clipboardData){
clipboardData.clearData();
}
}
setInterval("ccd();", 1000);
</script>

 

Can i disable clipboard by using javascript in other browser also?

 

 

 

Thanks

Jeeva

 

Link to comment
https://forums.phpfreaks.com/topic/104666-disable-clipboard/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.