I have this code for forcing a link to open with Chrome:
<script type="text/javascript">
function openURL(url)
{
var shell = new ActiveXObject("WScript.Shell");
shell.run("Chrome " + url);
}
</script>
with
<span onclick="openURL('https://google.co.uk/')" value="Open in Chrome">Google</span>
how do I change it to force a link open with IE11
Long story short, company default is Edge but several of the webpages have never been updated and work better with IE11.
I was hoping that I could write it in HTML & javascript
Cheers