I'm working with a basic HTML file that contains two buttons. When one of these buttons is pressed, I want to notify another user in some way within a few seconds.
<html>
<body>
<input type="button" value="Button 1"> <input type="button" value="Button 2">
</body>
</html>
What method or script would you recommend for achieving this functionality? Would Ajax, JavaScript, or another script be the best approach?
Thank you in advance, Joost