Javascript open Chrome tabs URL
Clash Royale CLAN TAG#URR8PPP
Javascript open Chrome tabs URL
I have a script for job searching that uses InternetExplorer. How do I change this to Chrome or Microsoft Edge?
var navOpenInNewWindow = 0x1;
var navOpenInNewTab = 0x800;
var navOpenInBackgroundTab = 0x1000;
var intLoop = 0;
var intArrUBound = 0;
var navFlags = navOpenInBackgroundTab;
var arrstrUrl = new Array(1);
var objIE;
intArrUBound = arrstrUrl.length;
arrstrUrl[0] = "https://jobs.saic.com/search/?q=korea";
arrstrUrl[1] = "http://search.lockheedmartinjobs.com/ListJobs/ByCustom/Foreign-Location/Keyword-Korea/Page-1";
objIE = new ActiveXObject("InternetExplorer.Application");
objIE.Navigate2(arrstrUrl[0]);
for (intLoop=1;intLoop<=intArrUBound;intLoop++)
objIE.Navigate2(arrstrUrl[intLoop], navFlags);
objIE.Visible = true;
objIE = null;
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.