The click
binding can be used with any visible DOM element to add an event handler, that will invoke a JavaScript function, when element is clicked.
<button data-bind="click: onClick">Click me</button>
ko.applyBindings({
onClick: function(data, event) {
// data: the context of the element that triggered the event
console.log(data);
// event: the click event
console.log(event);
}
});