묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
제이쿼리랑 에디터 충돌문제 ㅠㅠ
2014.01.04 03:30
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
< script type="text/javascript">
$(function(){
$(window).scroll(function() {
if($(this).scrollTop() > 187){
$("#apDiv6").css({ "position": "fixed", "top": "0px" });
}else{
$("#apDiv6").css({ "position": "relative", "top": "187px" });
}
});
});
< /script>
이게 제가 넣을 제이쿼리인데요.
헤드에 넣었더니 에디터가 먹통이네요...
아 참고로 $를 제이쿼리로도 바꿔봤습니다 ㅠㅠ 도대체 어떻게 해결해야할지...
댓글 2
-
이즈야
2014.01.04 04:11
-
designare0
2014.01.04 12:30
댓글 감사합니다.^^
근데 저 소스를 스킨 폴더 layout.html에 넣는게 맞나요? ㅠㅠ
초보라서...죄송합니다
<script type="text/javascript">
(function($)
{
$(window).scroll(function()
{
if($(this).scrollTop() > 187)
{
$("#apDiv6").css({"position":"fixed", "top":"0px"});
}
else
{
$("#apDiv6").css({"position":"relative", "top":"187px"});
}
});
})(jQuery);
</script>
jQuery 파일을 따로 로드하지 말 것. XE 코어에서 자동으로 불러옵니다.