sunslayer commented on a Page, No copy paste.  -  Feb 22, 2011

heres something to prevent CTRL+C (in jQuery)

$(function(){
    ctrl=false;
    $(document).keydown(function(e){
        if(e.keyCode==17)ctrl=true;
        else if(e.keyCode==67&&ctrl){e.preventDefault();return false;}
    }).keyup(function(e){if(e.keyCode==17)ctrl=false;});
});
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.