マウスの中ボタンは、値を入力フィールドに貼り付けます。この機能をオーバーライドしたい。それが可能だ?次のコードを使用していますが、デフォルトの貼り付けは妨げられません。
$('input').on('mouseup',function(e){
//middle button is clicked
if (e.which == 2)
{
e.preventDefault();
$(this).val('another value');
}
})