diff --git a/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduEnd/eduEndList.jsp b/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduEnd/eduEndList.jsp
index ea40414f..3c2a2434 100644
--- a/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduEnd/eduEndList.jsp
+++ b/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduEnd/eduEndList.jsp
@@ -162,9 +162,7 @@
- ', '');">
-
-
+ ', '');">
|
', '');">
diff --git a/src/main/webapp/visitEdu/usr/publish/script/content.js b/src/main/webapp/visitEdu/usr/publish/script/content.js
index 45a42fde..9054d398 100644
--- a/src/main/webapp/visitEdu/usr/publish/script/content.js
+++ b/src/main/webapp/visitEdu/usr/publish/script/content.js
@@ -1291,4 +1291,22 @@ function popCaptionToggle02() {
})
}
+$(document).ready(function () {
+ // 테이블 a 내용 없으면 포커싱 안가게.
+ $(".tb_list01 a").each(function(index,itm){
+ if($(itm).text()==""){
+ $(itm).attr("tabindex","-1");
+ }else{}
+ });
+
+ // 알람 a 내용 없으면 포커싱 안가게.
+ $(".login_info a").each(function(index,itm){
+ if($(itm).text()==""){
+ $(itm).attr("tabindex","-1");
+ }else{}
+ })
+
+});
+
+
|