LoginSignup
19
21

More than 5 years have passed since last update.

Viewportをはみ出た要素をあぶり出す一行JS

Last updated at Posted at 2017-01-09

前振り

iOS用サイトマークアップ中にCSS書き方が良くなかったなどの理由で2px程度の横スクロールが発生し、タッチイベントの挙動が気持ち悪くなることがままある。この時の問題点発見が意外としづらくストレスなのでJSにお願いしたい。

code

$('*').each(function(){if($(this).width() > $('body').width()){console.log($(this))}});
Developer Toolsに貼り付ければBodyからはみ出ている要素があればconsoleに表示される

TODO

毎回幅取得していて無駄、問題ない場合にundefinedになるなどの問題点多々。テストコードなどにしたいところ。

以上です

jQuery不要バージョン

document.querySelectorAll('*').forEach(function(el){if(el.clientWidth > document.querySelector('body').clientWidth){console.log(el)}});

19
21
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
19
21