I have several knockoutjs foreach template bindings that create about 100 <div class='item' />
in different positions throughout my page - everything works fine, except that my subsequent jQuery calls don't work if I don't stop in the debugger and don't wait a second before jquery binding:
ko.applyBindings(viewModel); $(".item").draggable();
I was looking for a dataBound event that I could use to apply bindings AFTER the viewModel was bound, but I did not find anything.
source share