Archive/HTML-CSS-JS

When open link on IE, redirect Microsoft Edge

은풍 2021. 2. 5. 13:20
<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>

reference : How to redirect from Internet Explorer to Microsoft Edge seamlessly? - Stack Overflow

 

Browser URL Schemes

Microsoft Edge : microsoft-edge

Chrome : googlechrome (for http) / googlechromes (for https)

 

반응형