I am using knockout ver. 2.3.0. Click binding is handled by more than one element in ie8. Example:
<div>
<div>
<span data-bind="click: changeSomething">click me</span>
</div>
<someother tags>...</someother tags>
</div>
Here action changeSomething is called not only by clicking span element. If I click 'someother tags' changeSomething is triggered. I think only items below the span are exposed and it's more random than the first case. Not sure if this is related, but I also use jquery ver 1.10.2, jqueryui ver 1.10.2.
Sorry for lack of fiddle, but I cannot reproduce it in a simple environment.