Displays a tooltip that can contain images and formatting.
Creates a new Tooltip.
The DOM element associated that hosts the Tooltip.
An object that contains one or more property/value pairs to apply to the new control. Each property of the options object corresponds to one of the control's properties or events. Event names must begin with "on". For example, to provide a handler for the opened event, add a property named "onopened" to the options object and set its value to the event handler.
Gets or sets the HTML element that is the content of the Tooltip.
Gets the DOM element that hosts the Tooltip control.
Gets or appends additional CSS classes to apply to the element that hosts the Tooltip.
Gets or sets a value that specifies whether the Tooltip is an infotip, a tooltip that contains a lot of info and should be displayed for longer than a typical Tooltip.
Gets or sets the HTML content of the Tooltip.
Gets or sets the position for the Tooltip relative to its target element: top, bottom, left or right.
Adds an event handler for the specified event.
The name of the event to handle.
The event handler function to associate with the event.
Set to true to register the event handler for the capturing phase; otherwise, set to false to register the event handler for the bubbling phase.
Hides the Tooltip.
Releases resources held by this Tooltip. Call this method when the Tooltip is no longer needed. After calling this method, the Tooltip becomes unusable.
Raised just before the Tooltip is hidden.
An object that contains information about the event.
Raised just before the Tooltip appears.
An object that contains information about the event.
Raised when the Tooltip is no longer displayed.
An object that contains information about the event.
Raised when the Tooltip is shown.
An object that contains information about the event.
Shows the Tooltip.
A value that specifies when to show the Tooltip. The default value is "mousedown".
Removes an event handler that the addEventListener method registered.
The name of the event that the event handler is registered for.
The event handler function to remove.
Set to true to remove the capturing phase event handler; set to false to remove the bubbling phase event handler.