팝업크기 (1) 썸네일형 리스트형 [JSP] 창(window)크기 설정 화면 호출시 창크기 설정 & 브라우저 사이즈 조절시 크기변경 (js파일에 설정 후 여러 jsp에 적용하여 사용) windowCtl.js $(document).ready(function() { var _width = $(window).width(); if(0 != _width) { $('body').css('height', $(window).height() - 24); $('#contents').css('width', $(window).width() - 32); $('#iframeEx').css('height', $(window).height() - 100); $(window).resize(function() { //창크기를 늘이거나 줄일경우도 포함해줘야만 한다. $('body').css('height',.. 이전 1 다음