<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>tip UI Component</title><link>https://community.telligent.com/community/13/w/api-documentation/75831/tip-ui-component</link><description>&lt;p&gt;&lt;span&gt;Developing on Verint Community? Use the API documentation as a reference for all supported interactions with Verint Community.&lt;/span&gt;&lt;/p&gt;</description><dc:language>en-US</dc:language><generator>14.0.0.586 14</generator><item><title>tip UI Component</title><link>https://community.telligent.com/community/13/w/api-documentation/75831/tip-ui-component</link><pubDate>Fri, 08 Mar 2024 17:52:23 GMT</pubDate><guid isPermaLink="false">cecda45f-299c-4830-9042-83002832ee28</guid><dc:creator>Ben Tiedt</dc:creator><comments>https://community.telligent.com/community/13/w/api-documentation/75831/tip-ui-component#comments</comments><description>Current Revision posted to API Documentation by Ben Tiedt on 03/08/2024 17:52:23&lt;br /&gt;
&lt;hr class="generated-documentation-start" style="border-width:0;" /&gt;&lt;h3&gt;jQuery.telligent.evolution.ui.components.tip&lt;/h3&gt;
&lt;p&gt;[[ui JavaScript API Module|UI Component]] which handles presentation of a tool tip for a given element. The default implementation uses the [[evolutionTip jQuery Plugin|evolutionTip plugin]]. [[ui JavaScript API Module|Overrides can be provided]] at the theme level to present tool tips differently.&lt;/p&gt;
&lt;h3&gt;Example&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;// Register a tip using a data attribute
&amp;lt;div class=&amp;quot;ui-tip&amp;quot; data-tip=&amp;quot;Tip Content&amp;quot;&amp;gt;An element with a tool tip&amp;lt;/a&amp;gt;

// Register a tip using the title attribute
&amp;lt;a href=&amp;quot;http://telligent.com&amp;quot; class=&amp;quot;ui-tip&amp;quot; title=&amp;quot;Tip Content&amp;quot;&amp;gt;Telligent&amp;lt;/a&amp;gt;

// Register a tip using the alt attribute
&amp;lt;img src=&amp;quot;/path/to/img&amp;quot; class=&amp;quot;ui-tip&amp;quot; alt=&amp;quot;Tip Content&amp;quot; /&amp;gt;///
&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Default Implementation&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;$.telligent.evolution.ui.components.tip = {
    setup: function() { },
    add: function(elm, options) {
        $(elm).evolutionTip({
            attribute: options.tipcontent || $.fn.evolutionTip.defaults.attribute
        });
    }
};
&lt;/code&gt;&lt;/pre&gt;

&lt;hr class="generated-documentation-end" style="border-width:0;" /&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item></channel></rss>