I would like to know if it is possible to create multiple bindings on an event in knockout.js
example:
<span data-bind="click: function1 function2, attr: {}"></span>
Try to use
<span data-bind="click: function() { function1(); function2() }"></span>
1.4m articles
1.4m replys
5 comments
57.0k users