* script
<script src="jquery-1.11.1.js"></script>
<script src="jquery-ui.js"></script>
* style
.ui-dialog > .ui-widget-header { background:blue; font-size:12px; }
.dialog { font-size:10px; }
* jquery
$(document).ready(function() {
$("#divlocationinfo").dialog( {
modal: true,
title: "subject", // 제목
width : "750px", // 넓이
resizable: false, // 리사이즈
closeOnEscape: false, // esc 작동여부
hide: 'slide', // 없어질때 효과
show: 'slide', // 나타날때 효과
});
});
* html
<div id="dialog">
<p>test</p>
</div>
http://api.jqueryui.com/dialog/
'javascript, jquery' 카테고리의 다른 글
체크박스 전체선택 / 해제 (0) | 2014.10.11 |
---|---|
$.cookie / $.removeCookie - 쿠키 제어하기 (0) | 2014.10.11 |
팝업창 자동 리사이즈(크로스 브라우징) (0) | 2014.10.11 |
이미지 변경하기 (0) | 2014.10.10 |
ajax - ajaxStart, ajaxStop (0) | 2014.10.08 |