반응형
<script>
// 1. 망보드의 movePage 함수를 팝업용으로 가로채기
function movePage(url) {
if (url) {
// 주소에 iframe 스타일이 없으면 추가
if (url.indexOf('mb_style=iframe') === -1) {
url += (url.indexOf('?') !== -1 ? '&' : '?') + 'mb_style=iframe';
}
// 팝업창 실행
window.open(url, 'mang_popup', 'width=950,height=900,scrollbars=yes,resizable=yes');
}
}
// 2. 일반 링크 클릭도 팝업으로 처리 (기존 코드 통합)
document.addEventListener("click", function(e) {
var target = e.target.closest('a');
if (target && target.href && target.href.indexOf('qcai.kr') !== -1) {
if (window.name === 'mang_popup') return;
e.preventDefault();
var url = target.href;
if (url.indexOf('mb_style=iframe') === -1) {
url += (url.indexOf('?') !== -1 ? '&' : '?') + 'mb_style=iframe';
}
window.open(url, 'mang_popup', 'width=950,height=900,scrollbars=yes,resizable=yes');
}
}, true);
</script>반응형