show

Shows the Tooltip for a specific target.

Example - showing the Tooltip for the target element

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

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

Parameters

element jQuery

The target element for which the Tooltip will be shown.

In this article