..
dialog 우선 순위 높이기
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
다이얼로그 open시 IE6버전에서는

다이얼로그에 뒤에 존재하는 셀렉트 박스가 보이는 경우가 발생한다.

이를 해결하기 위해서는 bgiframe을 사용한다.

<script type="text/javascript" src="../jquery/external/bgiframe/jquery.bgiframe.pack.js"></script>

라이브러리 추가 후 bgiframe: true 옵션추가

$('#id).dialog({
                 width: 640,
                 height: 'auto',
                 resizable: false,
                 autoOpen: false,
                 bgiframe: false,
                 modal: true,
                bgiframe: true,
                 position: 'center',
                 buttons: {
                     닫기: function(){
                         $('#menuLink').dialog('close');
                         $(this).dialog('close');
                         $(this).html('');
                     }
                 }
             }); 

'DEV > html/css/js/img' 카테고리의 다른 글

[jquery plugin] jquery-form-validate  (0) 2010.04.09
[ jquery ] datepicker 옵션 정리  (0) 2009.08.22
jquery radio checked, select option selected  (0) 2009.06.02
  Comments,     Trackbacks