묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
jquery load('/../allheader.html') 에서 슬라이드 동작오류 질문입니다.
2018.05.24 20:13
<script>
jQuery(document).ready(function(){
jQuery("#allheader").load('/../allheader.html')
})
</script>
를 게시판 _header.php 에 넣었습니다.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script><script>
//슬라이드 네비게이션
jQuery(function(){
jQuery(".sub").hide();
jQuery(".menu>li").hover(function(){
jQuery(this).find(".sub").stop().slideDown();
},function(){
jQuery(this).find(".sub").stop().slideUp();
});
});
</script>
를 allheader.html에 넣었습니다.
문제는 IE8 에서 게시판에 들어가면 슬라이드가 동작하지 않습니다.
http://woodpack.co.kr/board_pfqT98
어떻게 고쳐야 하죠?
나머지 브라우저 크롬 인터넷11은 다 정상동작합니다.