In my web app, the left-hand side has buttons.
The right-hand side shows a display based on which left-hand button was pressed.
Sometimes, a user will do the following:
1. Press button 1
2. wait 1-3 seconds
3. Get reasonably frustrated and click button 2
4. button 1's display shows up instead
If I understand correctly, then the server-to-client request for button 1 gets served up before button 2.
I'm thinking other web developers have run into this issue. How should it be approached?
Thanks, Kevin.