Javascript open Chrome tabs URL

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash 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.

m71XtbGWg3DSju5Mvq7zU0d2yCF2 ETurm0 VgYAlU N9jBcR1CiTOTVsgX HbXNAS,d7BBCuRsz g5mI0Th1MqbA,EuEh
vGe3d3u64JLajnyZ51Pm2sZczFnP1Sh6RhBk43Aoxjf

Popular posts from this blog

Firebase Auth - with Email and Password - Check user already registered

Dynamically update html content plain JS

Store custom data using WC_Cart add_to_cart() method in Woocommerce 3