요소가 있고 세로 스크롤 막대가없는 너비가 필요합니다.
Firebug는 몸 너비가 1280px라고 말합니다.
다음 중 하나는 Firefox에서 잘 작동합니다.
console.log($('.element').outerWidth() );
console.log($('.element').outerWidth(true) );
$detour = $('.child-of-element').offsetParent();
console.log( $detour.innerWidth() );
그들은 모두 내가 찾고있는 값인 1263px를 반환 합니다.
그러나 다른 모든 브라우저는 1280px를 제공합니다 .
(!) 세로 스크롤바없이 전체 화면 너비를 얻는 크로스 브라우저 방법이 있습니까?
width: 100%;