window.innerWidth x window.innerHeight | window.outerWidth x window.outerHeight | $(window).width() x $(window).height() | $(document).width() x $(document).height() | |
Firefox 49.0 | 1920 x 1079 1920 x 917 | 1920 x 1080 1936 x 1056 | 1903 x 1079 1903 x 917 | 1903 x 1079 1903 x 917 |
chrome 53.0.2785.116 m | 1920 x 1080 1920 x 974 | 1904 x 1064 1920 x 1040 | 1903 x 1080 1903 x 974 | 1903 x 1080 1903 x 974 |
IE 11 | 1920 x 1079 1920 x 985 | 1920 x 1080 1936 x 1056 | 1903 x 1079 1903 x 985 | 1903 x 1079 1903 x 985 |
IE 10 | 1920 x 1079 1920 x 985 | 1920 x 1080 1936 x 1056 | 1903 x 1079 1903 x 985 | 1920 x 1079 1920 x 985 |
IE 9 | 1920 x 1079 1920 x 985 | 1920 x 1080 1936 x 1056 | 1903 x 1079 1903 x 985 | 1920 x 1079 1920 x 985 |
IE 8 | undefined | undefined | 1899 x 1075 1899 x 981 | 1920 x 1079 1920 x 985 |
スクロールバーを含める | スクロールバーを含めない | |
IE 9以上対応 | window.innerWidth x $(document).height() | $(window).width() x $(document).height() |
IE 8以上対応 | window.innerWidth x $(document).height() ※IE 8のみ$(document).width() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | jQuery( function ($) { var winW, conW, conH; var resizeTimer = false ; $(window).on( 'load resize orientationchange' , function () { if (resizeTimer !== false ) clearTimeout(resizeTimer); resizeTimer = setTimeout( function () { if ( typeof (winW = window.innerWidth) === 'undefined' ) winW = $(document).width(); conW = $(window).width(); conH = $(document).height(); }, 200); }); }); |