LoginSignup
1
3

More than 5 years have passed since last update.

jQuery初心者でも簡単にデキる「jQueryを使った右クリック禁止」の実装方法

Last updated at Posted at 2017-06-05

jQueryのcontextmenu()メソッドを使えば、
右クリック禁止の実装が簡単にできますので共有します。

$(document).on('contextmenu', function(){
    return false; // 右クリックキャンセル(無効化)
});

ページ全体を対象として、右クリックした際に無効化する処理が走る仕組みとなっています。

簡易的な画像をダウンロードさせたくない。ソースを見せたくない場合にご使用ください。(あくまで簡易的な処置です)

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3