LoginSignup
41
39

More than 5 years have passed since last update.

jQueryで要素の幅や高さを取得する方法

Last updated at Posted at 2014-04-25

これ、いっつも忘れるのでメモ。
幅の取得方法あれこれ

$('#hoge').width() -> width
$('#hoge').innerWidth() -> width + padding
$('#hoge').outerWidth() -> width + padding + border
$('#hoge').outerWidth(true) -> width + padding + border + margin

※高さもwidth⇒heightになるだけで同じ

41
39
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
41
39