JSFiddle - React, Tailwind, and code Playground

by fuggfuggfugg

HTML

<input type="button" id="btn" value="Open Google in Firefox">
    
    http://forums.asp.net/t/1652038.aspx?How+can+we+force+a+link+to+open+a+URL+in+a+different+browser+

JavaScript

$("#btn").on("click", function(){

      var shell = new ActiveXObject("WScript.Shell");
      shell.run("Firefox http://www.google.com");

});