IE로 접속할 경우 Edge로 리다이렉트 시키기

Posted by 대혀니_
2021. 1. 7. 02:29 IT/Web

최근에 페이스북 디자인이 리뉴얼되면서 IE를 대응하기 위해 나온코드인데 매우 유용할거 같다.

 

<script>

  if(/MSIE \d|Trident.*rv:/.test(navigator.userAgent)) {

    window.location = 'microsoft-edge:' + window.location;

    setTimeout(function() {

      window.location = 'https://go.microsoft.com/fwlink/?linkid=2135547';

    }, 1);

  }

</script>