Can I Force a Specific Browser to Open a Link?
A software developer is encountering issues regarding browser support for a website and a softphone integrated into the webpage. The softphone is built with ActiveX, which is not supported by Firefox. Consequently, the developer seeks a solution to either force Firefox to open a specific link in Internet Explorer or enable ActiveX within Firefox using a plugin or other method.
Answer:
To open a link in Microsoft Edge from any browser, including Firefox, the user can utilize the microsoft-edge: protocol in the HREF attribute of the link.
<a href="microsoft-edge:http://www.google.com">EDGE (works)</a>
The above is the detailed content of How Can I Force a Specific Browser (e.g., Edge) to Open a Link?. For more information, please follow other related articles on the PHP Chinese website!