8
7

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.

[JavaScript] 特定のブラウザを判別して、処理を書く

Posted at

目的

Chromeとか、Firefoxだけにはこうしたいとか、こうしたくないとかがある。
そんなときに、特定のブラウザを判別する方法。

//navigotorはブラウザの情報を持ったオブジェクト
//プロパティであるuserAgentはブラウザを識別するための文字列が格納されている
window.navigator.userAgent
>>> "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36"

// userAgentに入っている文字列を識別すればいい。
if (navigator.userAgent.index0f('Chrome') !== -1) {
 // 処理
}

どうでもいいけど、FirefoxのTransformプロパティに対する弱さは何なんですかね。
いい加減、対応してほしい。

8
7
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
8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?