hide

Fires when a Tooltip is hidden.

Example - subscribing to the hide event during initialization

<span id="target" title="Tooltip content">
  Some content
</span>

<script>
  $(document).ready(function() {
    $("#target").kendoTooltip({
      hide: function() {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("tooltip is hidden!");
      }
    });

  });
</script>

Example - subscribing to the hide event after initialization

<span id="target" title="Tooltip content">
  Some content
</span>

<script>
  $(document).ready(function() {
    var tooltip = $("#target").kendoTooltip().data("kendoTooltip");

    tooltip.bind("hide", function() {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("tooltip is hidden!");
    });
  });
</script>
In this article