JSFiddle - React, Tailwind, and code Playground

by runjep

HTML

<input type="text" data-bind="event: { keypress: keypress }"/>http://jsfiddle.net/runjep/cz4HM/#share

JavaScript

TestViewModel = function() {  
    this.keypress = function(data,event) {
        alert('h');
        return true;
    };
};
ko.applyBindings(new TestViewModel());