YUI recommends YUI3.

YUI 2 has been deprecated since 2011. This site acts as an archive for files and documentation.

This documentation is no longer maintained.

YUI Library Examples: Container Family: Simple Tooltip Example

Container Family: Simple Tooltip Example

Hover over the orange box and the link to see their Tooltips.

Hover over me to see a Tooltip!

Hover over me to see a Tooltip!

Setting up Tooltips

The Tooltip Control is an extension of Overlay that is analogous to popup tooltips within common operating systems. The standard tooltip interaction pattern involves a small overlay that is displayed when the mouse hovers over a context element for a specified amount of time. Tooltip is designed to be simple to implement with easily-accessed configuration options and visual styling handled entirely via CSS.

Tooltips are instantiated by script and are rendered (and hidden) automatically when the window's load event fires; unlike other controls in the Container family, no call to render is required with Tooltip. Tooltip introduces several specific configuration properties:

  • context — Defines the context element that will trigger the Tooltip to be displayed. This property can be set using either an element id or an element reference.
  • text — The Tooltip's text. If the text property is omitted, the Tooltip will try to set its own text using the context element's "title" attribute.
  • showdelay — The number of milliseconds to wait before showing the Tooltip on mouse over. Defaults to 200.
  • hidedelay — The number of milliseconds to wait before hiding the Tooltip on mouse out. Defaults to 250.
  • autodismissdelay — The number of milliseconds to wait before automatically dismissing the Tooltip. Defaults to 5000.

In this tutorial, we'll create two Tooltips. The first will be associated with an element with an id of ctx, and will have its text set explicitly. The second Tooltip will be associated with a link with an id of link, but it will retrieve its text from the link's title attribute:

The corresponding markup for the context elements for this tutorial looks like this:

YUI Logger Output:

Note: Logging and debugging is currently turned off for this example.

Reload with logging
and debugging enabled.

Container Family Examples:

More Container Family Resources:

Copyright © 2013 Yahoo! Inc. All rights reserved.

Privacy Policy - Copyright Policy - Job Openings