open
Opens the sources popover. Fires the open event before opening; calling e.preventDefault() in the event handler prevents the popover from showing.
Example - open the popover
<span id="citation"></span>
<script>
$("#citation").kendoCitation({
sources: [{ url: "https://example.com", title: "Example" }]
});
var citation = $("#citation").data("kendoCitation");
citation.open();
</script>