hide

Hides the Tooltip.

Example - manually closing the Tooltip

<div id="container">
  <span title="Tooltip content">Tooltip target</span>
</div>

<button id="hideTooltip" class="k-button">Hide tooltip</button>

<script>
  $(document).ready(function() {
    var tooltip = $("#container").kendoTooltip({
      filter: "span",
      autoHide: false,
      position: "right"
    }).data("kendoTooltip");

    $("#hideTooltip").click(function() {
      tooltip.hide();
    });
  });
</script>
In this article