JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://cdn.kendostatic.com/2012.1.515/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.1.515/styles/kendo.mobile.all.min.css">
<a class="buttonLinkDefaultWithBackground" href="javascript:showSearchSpecificationModal();">

JavaScript

function showSearchSpecificationModal() {
        var win = $("#specificationSearchWindow").kendoWindow({
            actions: ["Custom", "Refresh", "Maximize", "Minimize", "Close"],
            draggable: false,
            width: "900px",
            height: "550px",
            modal: true,
            resizable: false,
            title: "Find a Specification",
            visible: false,
            content: "/ProductSpecification/Search"
        }).data("kendoWindow");

        win.center();
        win.open();
    }