1
1

More than 3 years have passed since last update.

JavaScriptを無効化しているブラウザへの対応

Posted at

開発中に調べたのでメモです

目指すところ

JavaScriptを無効化しているブラウザに対して、「お使いのブラウザはJavaScriptをサポートしていません。」と表示させる。

表示させたい文言→body内に<noscript>タグ内に記載

index.html
<body>
   <noscript>お使いのブラウザはJavaScriptをサポートしていません。</noscript>
</body>

スタイルを付けたい→head内に<noscript>タグで囲み記載

index.html
<head>
   <noscript><link rel="stylesheet" href="css/noscript.css" /></noscript>
</head>
1
1
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
1