.uiTooltip()
Categories: UI
.uiTooltip( [ options ] )
Subclass: ep
Inherit: (Subclass: ep) .widget()
Plugin: ep.ui.tooltip
Description: Create a tooltip.
-
.uiTooltip( [ options ] )
version added: 6.11.0options A map of additional options pass to the method.
The .uiTooltip()
method create a tooltip from each element in the set of matched elements.
-
Apply .uiInput() to all input element and set autofocus to the first matched element.
Code:
ep('#tooltip') .uiTooltip({ autofocus: true });
-
show
version added: 6.11.0This event is triggered when the tooltip was displayed.
-
hide
version added: 6.11.2This event is triggered when the tooltip was hidden.
-
show
-
.uiTooltip( 'show', [ callback ] )
version added: 6.11.0callback A method to execute after the tooltip was displayed (after animated show).
Call up a previously attached tooltip.
-
-
hide
-
.uiTooltip( 'hide', [ callback ] )
version added: 6.11.0callback A method to execute after the tooltip was hidden (after animated hide).
Hide a previously displayed tooltip.
-