How to bind and unbind dynamically at runtime?
Right now I have a model with various model items as its children. The behavior I am looking for is to have the user tap/click on the correct model item to advance the animation/sequence.
What I think would help get me accomplish my task is to either:
A) Have it so that on-click I bind the next model item with a ".svc.play" and unbind the previous model item so that way the user cannot click on the wrong parts to trigger the next sequence
B) Have an if-else statement on the javascript side to track and verify that the correct model item is clicked then have it play the next sequence.
Does anyone know how to bind/unbind the services via javascript?

