접근성 수정
This commit is contained in:
parent
a67e5a64e1
commit
b4594c991d
@ -274,7 +274,7 @@ function fn_listPops(typeDivCd) {
|
||||
<li class="swiper-slide">
|
||||
<div class="con-1">
|
||||
<div class="block"><span class="cla">${itemPop.typeDivNm }</span></div>
|
||||
<button class="tit underline pink" onclick="gfn_getDetail('${itemPop.masterId}')">${itemPop.title }</button>
|
||||
<button class="tit" onclick="gfn_getDetail('${itemPop.masterId}')">${itemPop.title }</button>
|
||||
</div>
|
||||
<div class="con-2">
|
||||
<p class="sub"><span>주제분야</span><span><c:if test="${empty itemPop.subjectNm }">-</c:if>${itemPop.subjectNm }</span></p>
|
||||
|
||||
@ -24,12 +24,6 @@ $(document).ready(function(){
|
||||
$('.location .inner .row-top .arr img').attr('alt','');
|
||||
$('.map .inner .info-box .info-sec .text-box > div span:nth-of-type(1) em.next').append('<span class="ir">다음</span>');
|
||||
|
||||
$("#searchHeaderButton").focus(function (e) {
|
||||
if (e.keyCode == 13 || e.keyCode == 9) {
|
||||
alert('1');
|
||||
}
|
||||
});
|
||||
|
||||
$("#searchHeaderButton").focus(function(){
|
||||
$('.skip-nav').show();
|
||||
$('.skip-nav a:nth-of-type(1)').focus();
|
||||
@ -37,7 +31,13 @@ $(document).ready(function(){
|
||||
|
||||
$('.skip-nav a:nth-of-type(4)').focusout(function(){
|
||||
$('.skip-nav').hide();
|
||||
})
|
||||
});
|
||||
$(".skip-nav a").keydown(function (e) {
|
||||
if (e.keyCode == 13) {
|
||||
$('.skip-nav').hide();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
/* 인기자료 탭메뉴 */
|
||||
(function ($) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user