JSFiddle - React, Tailwind, and code Playground

by shriek

HTML

<span data-bind="text: txt, click: function(){ outsideFn }"></span>

JavaScript

function outsideFn()
{
    alert("outside funtion"); 
}
var vm = {
    "txt": ko.observable("some text")
}
ko.applyBindings(vm);