See the Pen [JavaScript] Element.getBoundingClientRect() by mill (@millfeel) on CodePen. padding과 border-width를 포함해 전체 엘리먼트가 들어 있는 가장 작은 사각형인 DOMRect 객체입니다. top, right, bottom, left, x, y, width, height 프로퍼티는 전반적인 사각형의 위치와 크기를 픽셀 단위로 나타냅니다. 엘리먼트의 크기와 뷰포트에 상대적인 위치 정보를 제공하는 DOMRect 객체를 반환한다. [공부좌표] https://developer.mozilla.org/ko/docs/Web/API/Element/getBoundingClientRect
console.log('out__top') function foo() { console.log('foo'); } $(window).on('load', function(){ console.log('jQuery - load') }) $(document).ready(function () { console.log('jQuery - ready'); }) $(function () { console.log('jQuery - ready 축약') }) window.addEventListener('DOMContentLoaded', function () { console.log('DOMContentLoaded') }) window.addEventListener('load', function () { console.log('..