3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

iframe内のclickイベントを超簡単に無効にする方法

Posted at

はじめに

iframe内のクリックを無効にしようとjavascriptを色々いじっていましたが、結局できませんでした。cssをいじるだけでクリックイベントを簡単に無効にでき、拍子抜けしたので、メモ。

コード

test.html
<iframe id="iframe_calender" SRC="" scrolling="no"  width="1000px" height="1000px" frameborder="0" ></iframe>

test.css
iframe{
  pointer-events:none;
}

参考

https://techblog.yahoo.co.jp/advent-calendar-2016/css_pointer_events/

3
4
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
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?