본문 바로가기

World Wide Web/jquery

IE9에서 jquery css height 버그

IE9에서 jquery css height 버그가 있다.

jQuery(".mainDiv").css("height", jQuery(window).height()-95); 라고 쓰면 먹통인데

구글링을 통해서 ie9에서 jquery height에 버그가 있다는걸 인지하고

jQuery(".mainDiv").height(jQuery(window).height()-95)

라고 바꾸니 잘 작동하였다.