Reputation: 196499
we have a website with links to a sharepoint. These features in sharepoint only work in IE so i dont want to open up firefox or chrome if that is the default browser. Is there anyway to have a
<a href= "">My Link</a>
force open up in internet explorer ?
Upvotes: 1
Views: 2828
Reputation: 1
If this is run in a windows environment, you could use a PHP script to open Internet Explorer through PHPs support for COM objects.
If you are interested I can provide the script to do this.
Upvotes: 0
Reputation: 1652
You can use javascript to inject the link in your HTML code if the client is IE, and maybe show a warning message if the browser isn't IE. Anyway you can't tell any browser to open a link using another browser.
Upvotes: 3