An open API service indexing awesome lists of open source software.

https://github.com/psephopaiktes/ie-blocker

Block your site when user use Internet Explorer.
https://github.com/psephopaiktes/ie-blocker

Last synced: 3 months ago
JSON representation

Block your site when user use Internet Explorer.

Awesome Lists containing this project

README

          

# IE-blocker
Webページに Internet Explorer でアクセスされると、サイトをブロックできます。

## 使い方

HTMLファイルのHeadタグ内に以下のコードを貼り付けます。
`https://example.com` の部分は、IE以外のブラウザでアクセスされたときのリダイレクト先です。
あなたのサイトのURLに置き換えるか、省略してください。
```

if ( document.documentMode ) {
location.href = 'https://psephopaiktes.github.io/IE-blocker/?https://example.com';
}

```

もしくは、以下のようにjsファイルを読み込みます。
```

```