Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
356 views
in Plugins by
StackOverflow has a "dirty check" where if anything changes while you are adding content to a question (edits, answers, comments), you get a notification that you need to refresh the page to see changes. Is this possible with Q2A right now with any of the plugins? Even getting sort of halfway there is ok.
Q2A version: Latest

2 Answers

0 votes
by
No, there is no plugin for such feature as of now.
+2 votes
by
You could write a plugin that gets activated when the user is in answer mode (clicked the answer button).

Then you ajax request each 20 seconds (or so) if the number of answers has changed in the database. If so, then you can inform the user frontend about an incoming answer.

Technically not difficult.

However, think of:

1. It is better to have more answers. They are mostly very different, I would not confuse the user by saying, "hey, there is an answer just now. Stop your 5 min text and trash it."

2. Server load.
...