Has anyone done this, seen this done, know how it might be done, or
have a good reason not to do it at all?
I would argue against any delayed action which reloads or modifies the structure of the page. Here's why:
Reason #1
People click at vastly different speeds using a wide array of input methods.
Reason #2
Behavior should be consistent, not subject to hidden rules that only you know about. Sometimes users are heavily trained and can leverage optimizations, but most of the time they are not.
Reason #3
A structural change (especially one performed asynchronously) may undo subsequent actions.
Example:
- User checks a box.
- Page posts back asynchronously after a short delay.
- User unchecks the same box.
- Async postback completes, rechecking the box.
This is a design consideration for any async postback, but the delay makes it even less intuitive.
Alternative
If the operation requires that the entire lifecycle be executed when the postback occurs, then I would argue for executing the postback immediately.
If the operation does not require the entire lifecycle of the page to be executed, I suggest executing the logic in the background with an AJAX call of some sort and eliminate the postback completely. You can then use the resulting values to update the browser (if necessary).