JSFiddle - React, Tailwind, and code Playground

by underlog

HTML

<script src="https://getfirebug.com/firebug-lite.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.3.1007/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.3.1007/styles/kendo.kendo.min.css">
<script src="http://cdn.kendostatic.com/2011.3.1007/js/kendo.all.min.js"></script>
<script type="text/x-kendo-template" id="person-card-template">
    foo.asx?username=#=Username#
    Maybe multiline?
</script>

<div id="foo"></div>

JavaScript

var template = kendo.template($("#person-card-template").html());
var templateContents = template({Username: "foo"});
                              
$("#foo").html(templateContents);