show

Shows the Popover for a specific target.

Example - showing the Popover for the target element

<div id="container">
  <span id="target">Popover target</span>
</div>

<script>
  $(document).ready(function() {
    var popover = $("#container").kendoPopover({ template: "Content description" }).data("kendoPopover");
    popover.show($("#target"));
  });
</script>

Parameters

element jQuery

The target element for which the Popover will be shown.

In this article