2024/01/23 웹접근성 수정
This commit is contained in:
parent
74b993f83f
commit
8612be3e99
@ -85,7 +85,9 @@
|
||||
if ($('#regBtn').prop('disabled')) {
|
||||
$('#regBtn').removeAttr('onclick').removeAttr('data-tooltip');
|
||||
$('#regBtn').prop('disabled', false);
|
||||
$('#regBtn').css('background-color', '#d5d5d5');
|
||||
$('#regBtn').css('background-color', '#888');
|
||||
/*24.01.23 웹접근성 검사를 위하여 title 추가*/
|
||||
$('#regBtn').attr('title','비활성화됨');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -153,7 +153,10 @@ $(document).ready(function(){
|
||||
if($applyButton.prop('disabled')){
|
||||
$applyButton.removeAttr('onclick');
|
||||
$applyButton.prop('disabled', false);
|
||||
$applyButton.css('background-color', '#d5d5d5');
|
||||
$applyButton.css('background-color', '#888');
|
||||
/*24.01.23 웹접근성 검사를 위하여 title 추가*/
|
||||
$applyButton.attr('title','비활성화됨');
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
@ -458,7 +461,7 @@ $(document).ready(function(){
|
||||
</td>
|
||||
<td class="aplctBtn">
|
||||
<%-- <button type="button" class="btnType04" onclick="fncEduReg('<c:out value="${list.prcsAplctPrdOrd}"/>');" disabled>신청</button> --%>
|
||||
<button type="button" class="btnType04" onclick="fn_eduRegPopup('<c:out value="${list.prcsAplctPrdOrd}"/>', '<c:out value="${list.eduAplctOrd}"/>');" disabled>신청</button>
|
||||
<button type="button" class="btnType04" onclick="fn_eduRegPopup('<c:out value="${list.prcsAplctPrdOrd}"/>', '<c:out value="${list.eduAplctOrd}"/>');" title="팝업 열림" disabled>신청</button>
|
||||
</td>
|
||||
</c:if>
|
||||
</tr>
|
||||
|
||||
@ -70,7 +70,9 @@
|
||||
if ($('#regBtn').prop('disabled')) {
|
||||
$('#regBtn').removeAttr('onclick').removeAttr('data-tooltip');
|
||||
$('#regBtn').prop('disabled', false);
|
||||
$('#regBtn').css('background-color', '#d5d5d5');
|
||||
$('#regBtn').css('background-color', '#888');
|
||||
/*24.01.23 웹접근성 검사를 위하여 title 추가*/
|
||||
$('#regBtn').attr('title','비활성화됨');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -85,7 +85,9 @@ $(document).ready(function(){
|
||||
if($applyButton.prop('disabled')){
|
||||
$applyButton.removeAttr('onclick');
|
||||
$applyButton.prop('disabled', false);
|
||||
$applyButton.css('background-color', '#d5d5d5');
|
||||
$applyButton.css('background-color', '#888');
|
||||
/*24.01.23 웹접근성 검사를 위하여 title 추가*/
|
||||
$applyButton.attr('title','비활성화됨');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user