How to detect right mouse click + paste using JavaScript?

I like this solution:

$('#txt_field').bind('input propertychange', function() {
   console.log($(this).val());
});

Leave a Comment