Hello all, it has been some time since I posted, but you guys have been great!
So I have been using a fix I got from here for a long time. On my personal website, I click one button and it opens 50+ tabs for my morning reading (comics, news, tech sites, ect..)
It works great (only in Firefox, I have tried others), and uses this;
======================================
function subWin(pg) {
var SW; window.open(pg);
}
// location=0,scrollbars=1,resizable=1,status=0,menubar=0,toolbar=0"
function seeComics() {
subWin('http://www.dilbert.com/');
}
//--></SCRIPT>
=======================================
But as I grow and utilize this more, I would like to add forums to this. But in Firefox though, being my protected browser, has all cookies turned off and no addon's ect. So, with the forums requiring cookies, I would like my script to open certain links in specific browsers.
So how do I add a line to my code, so that from Firefox, I can have my code open a link in IE?