Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
How to format the links in sharepoint portal so that the link will open in Internet Explorer when site is accessed in Chrome using javascript or registery.
Posted
Updated 26-May-20 22:52pm

You could use IE tabs inside Chrome - Extension IE Tab[^].
 
Share this answer
 
v2
You may consider creating a shell and run the required URL.
JavaScript
var shell = new ActiveXObject("WScript.Shell");
shell.run("Firefox http://www.google.com");

Check this link for details-
How can we force a link to open a URL in a different browser? [^]

I've checked this and it worked perfectly as expected.

Hope, it helps :)
 
Share this answer
 
v2
Comments
S V Saichandra 6-Aug-15 1:41am    
Activex will not run on chrome. The above script will launch chrome from I.E, but my requirement is other way. Execute Activex in chrome and run application on client machine using javascript.
Cheers
Sai Chandra.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900