Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I force a link to open in a specific browser?

Tags:

I have designed a website using Firefox and am now looking to integrate a softphone into the webpage, but unfortunately it is made with ActiveX, so Firefox won't support it.

I have tried opening my page in IE9, and it looks a mess because I've used CSS3 for a lot of it and haven't coded it for different browsers because we will only be using Firefox within the office.

Is there a way that I can tell my page in Firefox to specifically open a new page in Internet Explorer and just have the softphone in there? Or is there a way to get ActiveX running in Firefox with a plugin or something?

like image 298
Daniel H Avatar asked May 04 '11 09:05

Daniel H


People also ask

How do I force a link to open in Firefox?

So, you might be having the link/webpage's file; right-click it; click on open-with; click on the Fire Fox option in the list; and make it default for opening such kind of files.

How do I make a link open in edge instead of Internet Explorer?

Alternative methods to launch Internet Explorer mode in EdgeChoose Settings, then Default browser. From here, you can: Make Edge your default browser (if not already) Allow IE to automatically open sites in Edge (Never, Incompatible sites only, or Always)


2 Answers

I don't think you can open a IE window from firefox, but you can easily build a firefox plugin based on your activex using http://code.google.com/p/ff-activex-host/

like image 87
ariel Avatar answered Oct 03 '22 04:10

ariel


It really depends on your exact situation.

If you are targeting multiple users outside a corporate network this is hardly possible to achieve. However, if you are targeting your company's network it's possible to do this using custom protocol.

Your link then would look like: ie://opens_in_ie.com

You'll have to make changes to registry of target computers though. More info about custom protocols is available here: http://msdn.microsoft.com/en-us/library/aa767914%28v=vs.85%29.aspx

In most cases, system administrator can do this remotely.

like image 24
Igor Avatar answered Oct 03 '22 03:10

Igor