JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://knockoutjs.com/js/knockout-1.2.1.js"></script>
<script src="http://knockoutjs.com/js/jquery.tmpl.js"></script>
<div id="parent" style="width: 200px; height:200px" data-bind="click: doSomething">
    <form id="myForm">
        <input type="text" />
        <input type="submit" value="Submit" data-bind="click: submitForm" />
    </form>
</div>

JavaScript

ViewModel = {
    doSomething: function(){
        console.log('parent was clicked');
    },
    submitForm: function() {
        alert('form submitted');
    }
}

ko.applyBindings(ViewModel);