2024/01/25 알림 없을 때 a태그 내용 추가

This commit is contained in:
kmg 2024-01-25 14:50:54 +09:00
parent 49044505a0
commit acc0e9176c

View File

@ -1302,7 +1302,10 @@ $(document).ready(function () {
// 알람 a 내용 없으면 포커싱 안가게.
$(".login_info a").each(function(index,itm){
if($(itm).text()==""){
$(itm).attr("tabindex","-1");
//$(itm).attr("tabindex","-1");
$(itm).attr("title","알림없음");
$(itm).text("0");
$(itm).css("text-indent","-99999px");
}else{}
})