Wijmo UI for the Web
showing Event
jQuery.Event object
The wijtooltip widget.
Triggered before showing the tooltip. Use return false; to cancel the event and stop showing the tooltip.
Syntax
Javascript (Usage) 
var instance; // Type: options
instance.showing = function(event, ui) { };
Javascript (Specification) 
showing = function ( 
   event : any,
   ui : any
) { };

Parameters

event
jQuery.Event object
ui
The wijtooltip widget.
Example
To cancel this event, use code like this.
$(“selector”).tooltip({
    showing: function () {
    //Cancels this event.
    return false;
    }
});

See Also

Reference

options type

 

 


© 2013 All Rights Reserved.

Send comments on this topic.