I have a very simple HTML file;
<html>
<body>
<input type="button" value="Button 1"> <input type="button" value="Button 2">
</body>
</html>
Now when a user presses button 1 or button 2, I want the other user to get informed(a popup or a piece of text) (within some seconds) that a button has been pressed.
What technique would you guys use to make this possible? Ajax? Javascript? Any other script?
thanks in avance, Joost