Why jquery .bind() not working in opera for cut copy paste events?

$(document).ready(function(){
  $('#txtInput').bind("cut copy paste",function(e) {
      e.preventDefault();
  });
});
link|improve this question

59% accept rate
2  
what is "not working" ? – genesis Aug 27 '11 at 22:01
feedback

2 Answers

This issue is not related to jQuery's bind function but rather to the fact that Opera doesn't support cut, copy and paste events.

link|improve this answer
Will thy support it in the future or is there any reasons they why they not supporting that yet? – Joper Aug 27 '11 at 23:23
2  
It will be supported in the future, just hasn't been implemented yet. – hallvors Aug 29 '11 at 11:08
@hallvors: Glad to hear it from the horse's mouth. Implementing the input event for contenteditable and the selectionchange event would be brilliant too. – Tim Down Aug 29 '11 at 13:29
@TimDown: yes, we know about those events being missing too ;) – hallvors Sep 21 '11 at 11:02
feedback

what about alternative?

  $('#txtArea').keydown( function(e){
      if(e.which==17 || e.which == 91) isCtrl=true;
      if(isCtrl) {
        switch(e.which) {
          case 67:  dostuff(); break; //ctrl c
          case 88:  dostuff(); break; //Ctrl x
          case 86:  dostuff(); break; //ctrl 
          default:  break;
        }
        e.preventDefault();
      }
    });
link|improve this answer
is it possible to add there a line which would disable context menu call (right button click) – Joper Aug 27 '11 at 22:23
$("#element").bind("contextmenu", function(e) { e.preventDefault(); }); – genesis Aug 27 '11 at 22:25
2  
There's no way to stop cut, copy and paste actions from the Edit menu. – Tim Down Aug 27 '11 at 22:33
feedback

Your Answer

 
or
required, but never shown

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