Prevent Printscreen and copy paste
For a quiz application i need to disable printscreen and copy paste from browser page.I have used
function setClipBoardData()
{
setInterval("window.clipboardData.setData('text',' ')",20);
}
and called on page load.Its working fine.But in some browser the page is getting refreshed again and again.
Due to which my clock timer value is also getting refreshed.
Can you please help me out.
Malabika
|