You need to sign in to do that
Don't have an account?

How to open google chrome window in Internet Explorer?
Hi All,
I am trying to open google chrome window while clicking on salesforce custom button in Internet Explorer.
I am trying the below javascript code to open chrome browser in internet explorer by clicking on custom button
function openChrome{
var url = 'http://google.co.in';
var chromeCommand = "Chrome --app="+URL+" --allow-outdated-plugins";
var shell = new ActiveXObject("WScript.Shell");
shell.run(chromeCommand);
}
Any help is appreciated!!
I am trying to open google chrome window while clicking on salesforce custom button in Internet Explorer.
I am trying the below javascript code to open chrome browser in internet explorer by clicking on custom button
function openChrome{
var url = 'http://google.co.in';
var chromeCommand = "Chrome --app="+URL+" --allow-outdated-plugins";
var shell = new ActiveXObject("WScript.Shell");
shell.run(chromeCommand);
}
Any help is appreciated!!
If my answer helps resolve your query, please mark it as the 'Best Answer' and upvote it to benefit others and improve the overall quality of Discussion Forums.
Gaurav Kheterpal
Certified Force.com Developer| Salesforce Mobile Evangelist| Developer Forums Moderator| Dreamforce Speaker
Thanks for response
I am getting the below error message
Unsupported attribute x-ua-compatible in <apex:page>
If my answer helps resolve your query, please mark it as the 'Best Answer' and upvote it to benefit others and improve the overall quality of Discussion Forums.
Gaurav Kheterpal
Certified Force.com Developer| Salesforce Mobile Evangelist| Developer Forums Moderator| Dreamforce Speaker
Is there any other workaround to do this?