animation Boolean|Object

A collection of {Animation} objects which are used to change the default animations. If set to false, all widget animations will be disabled. animation:true is not a valid configuration.

Example - disabling animations

<span id="target">
    Some Content
</span>

<script>
    $(document).ready(function() {
      $("#target").kendoPopover({
        animation: false,
        template: "Content description"
      });
    });
</script>
In this article