2025/04/01 웹접근성 문제점 수정
This commit is contained in:
parent
90dfbed563
commit
f832ab6b48
@ -45,7 +45,7 @@ function footerSiteLinkPageGo (){
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/policy/index.do" target="_blank" title="새창열림">저작권정책</a></li>
|
||||
</ul>
|
||||
<div class="site_go">
|
||||
<label for="footerSite">위원회 운영사이트 선택</label>
|
||||
<label for="footerSite">위원회 운영 누리집 관련사이트 선택</label>
|
||||
<select name="footerSite" id="footerSite">
|
||||
<option value="" selected>위원회 운영 누리집</option>
|
||||
<option value="http://www.copyright.or.kr">대표홈페이지</option>
|
||||
|
||||
@ -256,6 +256,15 @@ $(document).ready(function () {
|
||||
otherDateInput(thisInp,thisVal,endOrgVal);
|
||||
});
|
||||
|
||||
// 웹접근성 - 자주하는 질문 title 수정
|
||||
$(".faq_list a").each(function(idx,itm){
|
||||
if(!$(itm).is(".active")){
|
||||
$(itm).attr("title","답변 닫힘");
|
||||
}else{
|
||||
$(itm).attr("title","답변 열림");
|
||||
}
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
function boardCaptionToggle() {
|
||||
@ -814,9 +823,9 @@ function date_mask(objValue) {
|
||||
function faqView(obj){
|
||||
var target=$(obj);
|
||||
if(target.hasClass('active')){
|
||||
target.attr('title','답변 열림').removeClass('active').closest('dl').find('dd').stop().slideUp(300);
|
||||
target.attr('title','답변 닫힘').removeClass('active').closest('dl').find('dd').stop().slideUp(300);
|
||||
}else{
|
||||
target.attr('title','답변 닫힘').addClass('active').closest('dl').find('dd').stop().slideDown(300);
|
||||
target.attr('title','답변 열림').addClass('active').closest('dl').find('dd').stop().slideDown(300);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user