This works (using 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"/>
This doesn't:
<div data-bind="html: div_1" contenteditable="true"></div>
Anyone know how to observe changes to something other than a textarea?