New to Kendo UI for jQuery? Download free 30-day trial

Content Operations

You can use any valid technique for loading Tooltip content.

However, the Tooltip provides built-in support for asynchronously loading content from URLs. These URLs return HTML fragments that can be loaded in the content area of the Tooltip. If the content that is passed to the Tooltip includes scripts, they will be executed.

The following example demonstrates how to asynchronously load content to the Tooltip.

<div id="target">Content Text</div>

$(document).ready(function(){
    $("#target").kendoTooltip({
        content: { url: "html-content-snippet.html" }
    });
});

See Also

In this article