모달창 바깥영역 눌렀을때 안닫히게 하려면 어떻게 해야해요??
본문
var iframeModal_height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
$("#iframeModalWin").html('<iframe id="iframeModalContent" src="' + move_href + '" style="display: block; border: none; width:100%;"></iframe>');
$('#iframeModalContent').height(parseInt(iframeModal_height * 0.85)); // 85%
$('#iframeModal').modal('show');
return false;
이렇게 열었는데 바깥영역을 누르면 닫히더라구요
바깥영역 눌렀을때 안닫히게 하고싶거든요.. 구글링해서 ..
$('#signup-modal').modal( {data-backdrop: 'static', data-keyboard: 'false'} );
data-backdrop='static' data-keyboard='false'
이런걸 넣어봐도 닫히더라구요.. 넣는방법이 잘못된것같은데.. 방법이 있을까요?
답변 2
var iframeModal_height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
$("#iframeModalWin").html('<iframe id="iframeModalContent" src="' + move_href + '" style="display: block; border: none; width:100%;"></iframe>');
$('#iframeModalContent').height(parseInt(iframeModal_height * 0.85)); // 85%
$('#iframeModal').modal({
backdrop: 'static',
keyboard: false
});
return false;
사이트 주소를 공개하셔야지 제대로 확인 가능할 것 같습니다만..
답변을 작성하시기 전에 로그인 해주세요.