LoginSignup
12
14

More than 5 years have passed since last update.

overflow:auto のスクロールバーの表示/非表示を確認する

Posted at

overflow:auto のスクロールバーの表示/非表示を確認したい時ありますよね。ありますよね。私はあります。

今回もggれば安定のStackOverFlow

How can I check if a scrollbar is visible?
http://stackoverflow.com/questions/4814398/how-can-i-check-if-a-scrollbar-is-visible

今回も2番目のやり方がベストマッチ。(なぜ?)

jQuery.fn.hasScrollBar = function() {
    return this.get(0) ? this.get(0).scrollHeight > this.innerHeight() : false;
}

使い方

if($('#hoge').hasScrollBar()){
    console.log("スクロールバーあるよ")
}

ご参考まで。

12
14
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
12
14