We can enable or disable specific tooltip by using above code. While setting the disabled option we will use one array having tab numbers to disable.
hide
Type : Boolean or String or number or object
Default : true
Boolean : No animation, tooltip will be closed immediately if set to false, if it is set to True then the tooltip will fade out with default duration and default easing.
Number : Duration of animation while closing the tooltip in millseconds
string : Specified effect can be used while closing. Available effect list
Object: properties with object.
We can select and set hide option value by using radio buttons. We can read the associated value and display
items
Type : selector
Default : [title]
Which item you want to show as tooltiop, by default it is title. You can show other cotnent also by specifying item.
Changes to this option has to match with content option.
$( "#my_tooltip" ).tooltip({
items:
});
Getting items option value
var status = $( "#my_tooltip" ).tooltip("option", "items");
We can select and set position option value by using radio buttons. We can read the associated value and display the same.
show
Type : Boolean or String or number or object
Default : true
Boolean : No animation, tooltip will be closed immediately if set to false, if it is set to True then the tooltip will fade out with default duration and default easing.
Number : Duration of animation while closing the tooltip in millseconds
string : Specified effect can be used while closing. Available effect list
Object: properties with object.