본문 바로가기
IT/Web

Jquery UI dialog 위치

by Spring Up!! 2022. 8. 23.
반응형


<script>
$(document).ready(function(){
    $('#modal_dialog').dialog({
        title:"팝업창 제목"
        ,modal:false
        ,resizable:false
        ,autoOpen:false
        ,width:"auto"
        ,height:250
        ,open:function(e, ui) {
            $(this).sibling(".ui-dialog-titlebar").find("button").blur(); // remove focus from close button
            $(this).parent().offset({top:150,left:100});
        }
    });
});

</script>

자바스크립트+jQuery 완전정복 스터디 3: 중급 고급 활용편:웹 프론트엔드 개발자를 위한 필독서, 위키북스

반응형

댓글