How do I execute my custom code after all normal processing associated to changing observable’s value is finished (most importantly the changes to the DOM)?
I tried subscribing to the method of an observable, but the function is executed too early (the DOM is not yet modified).
Use a computed observable along with the Knockout “throttle” extender.
The basic idea is:
“Example 2: Doing something when the user stops typing” on the Knockout throttle extender doc page referenced above uses this technique.