I made a redirect link for my website from IE11 to Chrome by using ActiveXObject it works when I open the link in IE but when I open that redirect link in Chrome It doesn't work and is there a way to fix that problem.
<html lang="en">
<head>
<meta charset="utf-8">
<title> Redirect</title>
<h1>Browser Redirect</h1>
<script type="text/javascript">
{
varshell= new ActiveXObject("WScript.Shell");
shell.run("Chrome http://example.com");
}
setTimeout("pageRedirect()",3000);
</script>
</head>
</html>