showOnString(default: "hover")
Determines when the popover is shown. Valid values are "hover" and "click".
Example - show the popover on click
<span id="citation"></span>
<script>
$("#citation").kendoCitation({
showOn: "click",
sources: [{ url: "https://example.com", title: "Example" }]
});
</script>