Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4259312
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T05:46:02+00:00 2026-05-21T05:46:02+00:00

I am designing an emergency response page, which needs to display information across 3

  • 0

I am designing an emergency response page, which needs to display information across 3 different monitors. The first monitor will gather information about the caller, and then contain 2 links. The first link needs to display a different web page on the 2nd monitor, and the 2nd link needs to display a different web page on the 3rd monitor.

Is this possible?

Thanks for any help

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T05:46:03+00:00Added an answer on May 21, 2026 at 5:46 am

    The first link needs to display a different web page on the 2nd monitor, and the 2nd link needs to display a different web page on the 3rd monitor.

    While, depending on your operating system, it is possible to control where a window appears, there are much fewer options for doing this using javascript / serverside code over HTTP / browsers.

    The only sensible way to achieve this is by configuring the displays to be tiles of a larger display rather than independent screens (for *nix/BSD/Linux, check out xinerama).

    The code below saves the size of a window – and would only need some simple changes to support x/y offset and multiple windows – I leave it to you as to how you differentiate between the windows.

    A simpler approach would be to just have one huge window with frames whose borders align with the monitors.

    if (document.getElementById && !document.all) { // NOT for MSIE
        stickySizeOverloadOnload(stickySizeSetWindowSize);
        stickySizeOverloadOnresize(stickySizeSaveWindowSize);
    }
    
    function stickySizeSaveWindowSize(event)
    {
        var expiry = new Date();
        var path = document.location.pathname;
    
        expiry.setDate(expiry.getDate()+500);
        stickySizeSetCookie('windowSize', window.outerWidth + ',' + window.outerHeight, expiry, path);
    }
    
    function stickySizeSetWindowSize()
    {
        var saved=stickySizeGetCookie('windowSize');
        var parts=new Array();
        if (saved.length) {
        parts = saved.split(',');
        if ((parts[0]>100) && (parts[1]>100)) {
            window.outerWidth=parts[0];
            window.outerHeight=parts[1];
        } else {
            alert("invalid size - '" + saved + "'");
            stickySizeDeleteCookie('windowSize');
        }
    }
    }
    
    function stickySizeOverloadOnload(func)
    {
       var oldhandler=window.onload;
       if (typeof window.onload != "function") {
          window.onload=func;
       } else {
         window.onload=function(event) {
           oldhandler(event);
       func(event);
         }
       }
    }
    function stickySizeOverloadOnresize(func)
    {
       var oldhandler=window.onresize;
       if (typeof window.onresize != "function") {
          window.onresize=func;
       } else {
          window.onresize=function(event) {
             oldhandler(event);
             func(event);
          }
       }
    }
    
    function stickySizeSetCookie(name, value, expires, path, domain, secure) {
      var curCookie = name + "=" + escape(value) +
      ((expires) ? "; expires=" + expires.toGMTString() : "") +
      ((path) ? "; path=" + path : "") +
      ((domain) ? "; domain=" + domain : "") +
      ((secure) ? "; secure" : "");
      document.cookie = curCookie;
    }
    function stickySizeGetCookie(name) {
       var dc = document.cookie;
       var prefix = name + "=";
       var begin = dc.indexOf("; " + prefix);
       if (begin == -1) {
          begin = dc.indexOf(prefix);
          if (begin != 0) return null;
       } else
          begin += 2;
       var end = document.cookie.indexOf(";", begin);
       if (end == -1)
       end = dc.length;
       return unescape(dc.substring(begin + prefix.length, end));
    }
    function stickySizeDeleteCookie(name, path, domain) {
       if (stickySizeGetCookie(name)) {
          document.cookie = name + "=" +
            ((path) ? "; path=" + path : "") +
            ((domain) ? "; domain=" + domain : "") +
            "; expires=Thu, 01-Jan-70 00:00:01 GMT";
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am designing an Emergency Response page, and one of the features we need
whilst designing the about page for my new service, i have stumbled across a
Im designing a website, and often I need to present information in a nice
When designing a web service that will allow the consumer of the service to
for designing purposes i need to truncate all DB which has lots of FK's.
Im designing an RTOS which uses a priority based preemptive scheduler. What would the
im designing a system where i will have multiple users uploading large amount of
When designing a database, what usually determines what tables will be the primary and
In designing the HTML and CSS for a page, when should I use img.className
Im designing a dialerPad form using Windows form, there is a textbox which should

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.