- 5
- 제르엘
- 조회 수 328
이놈이 밀당을 하네요. 정확히는 메인 등 특정 상황에서 위젯이 정상적으로 작동하지 않습니다. 최신 댓글 버튼 위에 마우스 커서를 올려도 반응이 없습니다. 누르면 사이트 최상단으로 이동하고요. 특정 상황에서만 이러는 지 아니면 무작위로 이러는 지는 잘 모르겠습니다만, 일단 메인 화면에서는 정상 작동하지 않습니다.
+) Study For Us 강좌 위젯은 정상 작동합니다.
작성자
댓글 5
2018.01.24. 01:18
위젯 스킨에 있는 script 를 아래 코드로 바꿔주세요.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | jQuery( function ($){ $( ".neat-popular" ).each( function (){ var $popular = $( this ), $tabs_items = $popular.find( ".tabs_items" ), $tabs_itema = $tabs_items.find( "a" ), $tabs_inner = $popular.find( ".tabs_inner" ); var $pds = $popular.find( "#popular_documents_s2" ), $nds = $popular.find( "#newest_documents_s2" ), $ncs = $popular.find( "#newest_comments_s2" ); function actTab($tid){ $tabs_itema.removeClass( "tabs_active" ); $tid.addClass( "tabs_active" ); } function actItem($sid){ $tabs_inner.find( ".tabs_active" ).removeClass( "tabs_active" ); $sid.addClass( "tabs_active" ); } $tabs_itema.on( "mouseover click" , function (e){ e.preventDefault(); var $tid = $( this ); actTab($tid); }); $popular.find( "#pd_link_s2" ).on( "mouseover click" , function (e){ e.preventDefault(); actItem($pds); }); $popular.find( "#nd_link_s2" ).on( "mouseover click" , function (e){ e.preventDefault(); actItem($nds); }); $popular.find( "#nc_link_s2" ).on( "mouseover click" , function (e){ e.preventDefault(); actItem($ncs); }); }); }); |
2018.01.24. 02:27
음, 예전에도 문제가 있었나 보네요. 해결할 수 없는 문제인 건가요?