Monday, December 15, 2008

How to avoid Mouse 'Right Click' Paste feature


function Disable_RightClick()
{
    if(event.button == 2)
    { 
        window.clipboardData.clearData();
        return false;
    }
}

crmForm.all.firstname.attachEvent("onmousedown",Disable_RightClick);

1 comment:

Anonymous said...

This will clear the clipboard content. The user might lose previously copied precious content.
Which might not be a good way.