본문 바로가기
javaScript/jQuery

윈도우 크기 변경 (resize) 될 때마다 크기 정보 가져오기

by mooyou 2023. 4. 12.
728x90
300x250
SMALL

 

(document).ready(function(){
    $(window).on("resize",function(){
        size();
    })
    size(); 
})

function size(){
    var w = $(document).width();
    var h = $(document).height();

   $("#info").html(`width = ${w}, height = ${h}`);
}

 

728x90
반응형
LIST

댓글