[Solved] Synchronous changes to webpages useing javascript [closed]


Take a look at websockets, which allow you to open up a constant connection between the client and the server.

Basically you will need the “host” to send its screen data to the server via websocket (or possibly AJAX), which can then transfer the data to the “viewers” (which is where the websockets will be superior to AJAX).

solved Synchronous changes to webpages useing javascript [closed]