Open In App

jQuery UI Tooltips show option

jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. jQuery UI tooltip widget helps us to add new themes and allows for customization. In this article, we will see how to use the show option in jQuery UI tooltips. The show option is used to add the animation effect while showing in the jQuery UI tooltips. By default, the value is true.

Syntax:



$(".selector").tooltips(
   { show : true }
);

Parameters:

Approach:



<link href=”https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css” rel=”stylesheet”>

<script src=”https://code.jquery.com/jquery-1.10.2.js”></script>

<script src=”https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>

Example 1: The following code demonstrates the setting of the show option with time in ms.




 

Output:

Example 2: The following code demonstrates the setting of the show option with boolean value.




 

Output:

                 

Example 3: The following example demonstrates the tooltip show option with the slideDown and folds feature. Refer to the output image for better understanding.




 

Output:

Reference: https://api.jqueryui.com/category/widgets/


Article Tags :