filter String

Specifies a selector for the elements within the container which will display the Popover.

Example - showing a Popover only for strong elements in a text

<div id="container">
    I'm a <strong>target</strong>. I'm also a
    <strong>target</strong>.
</div>

<script>
    $(document).ready(function() {
      $("#container").kendoPopover({
        template: "Target Popover",
        filter: "strong"
      });
    });
</script>
In this article