문제

The responsive navigation on my site uses the aria-hidden="false" attribute. Is there a way I can set it to "true" purely through CSS? If not is there a line of code I can add so it can be set to false for IE7 and IE8 users?

도움이 되었습니까?

해결책

Do you use jQuery? if so you can do something like :

if(/MSIE [78]/.test(navigator.userAgent)) {
    $('* [aria-hidden="false"]').attr('aria-hidden', 'true');
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top