Showing posts with label Disable Right Click Paste. Show all posts
Showing posts with label Disable Right Click Paste. Show all posts

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);