LoginSignup
18
11

More than 5 years have passed since last update.

iOSのSafariでdata-toggleが動かない場合

Posted at

bootstrapを使っているページで、iOSのSafariだけアコーディングメニューを開けないというバグを見つけたので直しかたメモ

問題のコード

<a data-toggle="collapse" data-target="#target">
  開く(はず)
</a>

対処法1

href属性を足す

<a data-toggle="collapse" data-target="#target" href="#target">
  開く
</a>

対処法2

cursorスタイルを追加する

<a data-toggle="collapse" data-target="#target" style="cursor: pointer;">
  開く
</a>
18
11
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
18
11