문제가 발생한 페이지
http://hoya01.genieweb.co.kr/shop_add_page/index.htm?page_code=cinemaHall
를 비롯한 같은 jquery 를 사용한 모든 페이지가 대략 3일전부터 열리지 않고 있습니다.
jquery_simplemodal 을 이용했습니다.
소스는 아래와 같구요.
<link rel="stylesheet" type="text/css" href="/img_up/shop_pds/hoya01/design/script/ad_gallery/jquery.ad-gallery.css">
<script type="text/javascript" src="/img_up/shop_pds/hoya01/design/script/ad_gallery/jquery.ad-gallery.js"></script>
<!-- simplemodal -->
<script type="text/javascript" src="/img_up/shop_pds/hoya01/design/script/jquery_simplemodal/jquery.simplemodal.js?20110117"></script>
<link type="text/css" href="/img_up/shop_pds/hoya01/design/script/jquery_simplemodal/basic/basic.css?20110117" rel="stylesheet"/>
<!--[if lt IE 7]> <link type="text/css" href="/script/jquery_simplemodal/basic/basic_ie.css?20110117" rel="stylesheet"/> <![endif]-->
<script type="text/javascript">
$(function() {
var galleries = $('.ad-gallery').adGallery({slideshow: {autostart: true,stop_on_scroll: false}});
$('#switch-effect').change(
function() {
galleries[0].settings.effect = $(this).val();
return false;
}
);
$('#toggle-slideshow').click(
function() {
galleries[0].slideshow.toggle();
return false;
}
);
$('#toggle-description').click(
function() {
if(!galleries[0].settings.description_wrapper) {
galleries[0].settings.description_wrapper = $('#descriptions');
} else {
galleries[0].settings.description_wrapper = false;
}
return false;
}
);
});
function goVR(){
var url = "http://realpano.net/_vr/tstar/index_13f-002.html";
$.modal('<iframe src="' + url + '" height="500" width="800" frameborder="0" style="border:0">', {
//closeHTML:"",
containerCss:{
backgroundColor:"#fff",
borderColor:"#444",
height:500,
minHeight:500,
width:800,
minWidth:800,
padding:0
},
overlayCss:{
backgroundColor:'#000',
cursor:'default'
},
//특정 윈도우를 top과 left로 위치
//position:[10,10],
overlayClose:false,
onShow: function (dialog) {
//폼이 오픈될때 로직을 넣어주세요.
//alert('onShow');
},
onClose: function (dialog) {
//폼이 종료될때 로직을 넣어주세요.
//alert('onClose');
$.modal.close();
}
});
}
</script>
----------- 참고로, 전에는 잘 작동했으나 다른 사이트에서 작업하다가 작동이 안되서, 확인해보니
모든 simplemodal jquery 관련 부분들이 먹통이 되었습니다.
---------------
그리고, 아람스쿨로 만든 홈페이지에 네이버 신디케이션 설치 가능 여부도 알려주세요.
가능하지 않다면 빠르게 지원좀 부탁드립니다.