2024/01/29 웹접근성 수정
This commit is contained in:
parent
ee42c4abb9
commit
283799cfe3
@ -220,10 +220,19 @@ $(document).ready(function(){
|
|||||||
btnLast.attr('data-focus','sub36_pop02_close');
|
btnLast.attr('data-focus','sub36_pop02_close');
|
||||||
*/
|
*/
|
||||||
// 레이어팝업 포커싱 이동 수정
|
// 레이어팝업 포커싱 이동 수정
|
||||||
$(".tooltip-close").click(function(){
|
//$(".tooltip-close").click(function(){
|
||||||
var activeTarget = $('[data-tooltip-con="sub37_pop20"]');
|
//var activeTarget = $('[data-tooltip-con="sub37_pop20"]');
|
||||||
activeTarget.hide();
|
//activeTarget.hide();
|
||||||
$('[data-tooltip="sub37_pop20"]:nth-child(2)').focus();
|
//$('[data-tooltip="sub37_pop20"]:nth-child(2)').focus();
|
||||||
|
//});
|
||||||
|
|
||||||
|
$(".tooltip-close").click(function(e){
|
||||||
|
e.stopPropagation();
|
||||||
|
$(this).closest(".popup_wrap").hide();
|
||||||
|
$(".mask").hide();
|
||||||
|
$(".focusPopBtn").focus();
|
||||||
|
$(".focusPopBtn").removeClass("focusPopBtn");
|
||||||
|
$("body").css("overflow","inherit");
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user