How can I disable Ctrl+V (Paste) option using jQuery in one of my input text fields....

link|improve this question

8  
Why would you do that? It would frustrate more then one user if you disable ctrl+v. besided you can always right click and select paste – krike Apr 1 '11 at 7:06
1  
@krike maybe to force people to retype their email address or password? – greg Apr 1 '11 at 7:11
1  
I will disable JS in browser and can put ctrl+v anytime. – Kamilos Apr 1 '11 at 7:31
1  
@Kamilos what if the site requires javascript to run? – greg Apr 1 '11 at 7:32
3  
@Kamilos what about banking or facebook? if you disable javascript we cant even post comments in stack overflow. – greg Apr 1 '11 at 7:57
show 1 more comment
feedback

5 Answers

This seems to work ok.

You can listen to keyboard events with jQuery and prevent the event from completing if its the key combo you are looking for. Note, check 118 and 86 ('V' and 'v')

Working example here: http://jsfiddle.net/dannylane/9pRsx/4/

$(document).ready(function(){
    $(document).keydown(function(event) {
        if (event.ctrlKey==true && (event.which == '118' || event.which == '86')) {
            alert('thou. shalt. not. PASTE!');
            event.preventDefault();
         }
    });
});

Update: keypress doesn't fire in IE, use keydown instead.

link|improve this answer
This seems to work only in FF... – 404NotFound Apr 1 '11 at 9:05
Yup, turns out IE has a problem with keypress, changes to use keydown instead and it works now. thanks for the feedback! – DannyLane Apr 1 '11 at 9:23
Won't work for rightclick+paste, or for those "multimedia keys"; These are using different mechanisms than keyboard shortcuts. Also, you're assuming that paste is always and only at Ctrl+V – Piskvor Apr 1 '11 at 11:50
@Piskvor I'm not making any assumptions, the question was how to disable ctrl+v which is what I answered. – DannyLane Apr 1 '11 at 11:57
@DannyLane: You are right. I've understood the question to be "disable paste altogether", but that may not be what the OP wants. – Piskvor Apr 1 '11 at 12:36
show 1 more comment
feedback
up vote 8 down vote accepted

This now works for IE FF Chrome properly..I have not tested for other browsers though

$(document).ready(function(){
      $('#txtInput').bind("cut copy paste",function(e) {
          e.preventDefault();
      });
    });
link|improve this answer
$('#txtInput').bind("contextmenu",function(e){ e.preventDefault(); });//This disables the right-click – 404NotFound Apr 1 '11 at 9:21
1  
Interesting, I didn't know these events existed. I've found this page on browser quirks mode that gives info on cross browser compatability for these events: quirksmode.org/dom/events/cutcopypaste.html – DannyLane Apr 1 '11 at 12:51
feedback
jQuery('input.disablePaste').keydown(function(event) {
    var forbiddenKeys = new Array('c', 'x', 'v');
    var keyCode = (event.keyCode) ? event.keyCode : event.which;
    var isCtrl;
    isCtrl = event.ctrlKey
    if (isCtrl) {
        for (i = 0; i < forbiddenKeys.length; i++) {
            if (forbiddenKeys[i] == String.fromCharCode(keyCode).toLowerCase()) {
                 return false;
            }
        }
    }
    return true;
});
link|improve this answer
feedback

Put this in your textbox: onfocus="javascript:window.clipboardData.clearData()". jQuery IS javascript. Don't be afraid to use pure javascript.

Regards.

link|improve this answer
5  
@Misam While this is a solution, I implore you to consider krike's comment. Erasing my clipboard is just really annoying. – Sapph Apr 1 '11 at 7:12
what browser does this work in? – greg Apr 1 '11 at 7:14
@greg works in IE. – Sapph Apr 1 '11 at 7:17
@Sapph i think it only works in ie – greg Apr 1 '11 at 7:24
@greg I think you are correct :) – Sapph Apr 1 '11 at 7:25
feedback

You can catch key event :

function checkEventObj ( _event_ ){
    // --- IE explorer
    if ( window.event )
        return window.event;
    // --- Netscape and other explorers
    else
        return _event_;
}

document.keydown = function(_event) {
    var e = checkEventObject(_event);

    if( e.ctrlKey && (e.keyCode == 86) )
        window.clipboardData.clearData();
}

Not tested but, could help.

Source from comentcamarche and Zakaria

link|improve this answer
1  
window.clipboardData.clearData() only works in ie. If you're catching the event you might as well just prevent default and return false. that would effectively disable keyboard initiated paste. I'd post the example but i'm too lazy, and plus you're already so close. – greg Apr 1 '11 at 7:28
above code doesn't work..even in IE – 404NotFound Apr 1 '11 at 8:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.