これは機能します(KnockoutFireとFirebaseを使用):
var viewModel = KnockoutFire.observable(
new Firebase("https://<my-firebase>.firebaseio.com/"),
{ "div_1": true });
ko.applyBindings(viewModel);
<input type="text" data-bind="value: div_1"/>
これはしません:
<div data-bind="html: div_1" contenteditable="true"></div>
テキストエリア以外の変更を観察する方法を知っている人はいますか?