/    Sign up×
Community /Pin to ProfileBookmark

Opening multiple windows in one

I know this sounds dumb.. but what Im trying to do isn’t for an actual web page. There is many functions I want to make with little effort.
I want to perform many webpage link functions one after another, all on one page. So this is what I am looking for:
i.e.

  • 1. open an html file that will open a page, loggin if required.

  • 2. perform an action

  • 3. perform second action

  • 4. log onto another account

  • 5. perform an action…. etc.
  • I have tried this with batch files… much of it takes longer than I have in a day. I tried javascript, I end up loading all windows at one time. I need these steps performed one after another, that is my problem at the moment.

    This is an example of what I have now. But like I stated above. They all open at one time. Any help is appretiated

    <BODY>

    <a href=’#’ onclick=’openWindows()’>click me</a>

    </BODY>

    </HTML>

    <script language=”Javascript”>

    function openWindows()
    {
    window.open(“http://www.msn.com”,”window1″, “”);
    window.open(“http://www.yahoo.com”,”window2″, “”);
    window.open(“http://www.google.ca”,”window3″, “”);
    }

    </script>

    to post a comment
    JavaScript

    1 Comments(s)

    Copy linkTweet thisAlerts:
    @Beach_BumNov 22.2002 — If you want the new windows to "replace" each other while having one page in control try using frames. You can have the main frame replace the target frame with what ever window you want while you maintain control in the main frame.

    Very different from just a bunch fo window opens.

    But it is not clear what you want to do - so just offering thoughts.
    ×

    Success!

    Help @DarkShnyder spread the word by sharing this article on Twitter...

    Tweet This
    Sign in
    Forgot password?
    Sign in with TwitchSign in with GithubCreate Account
    about: ({
    version: 0.1.9 BETA 5.18,
    whats_new: community page,
    up_next: more Davinci•003 tasks,
    coming_soon: events calendar,
    social: @webDeveloperHQ
    });

    legal: ({
    terms: of use,
    privacy: policy
    });
    changelog: (
    version: 0.1.9,
    notes: added community page

    version: 0.1.8,
    notes: added Davinci•003

    version: 0.1.7,
    notes: upvote answers to bounties

    version: 0.1.6,
    notes: article editor refresh
    )...
    recent_tips: (
    tipper: @AriseFacilitySolutions09,
    tipped: article
    amount: 1000 SATS,

    tipper: @Yussuf4331,
    tipped: article
    amount: 1000 SATS,

    tipper: @darkwebsites540,
    tipped: article
    amount: 10 SATS,
    )...