### Basic Tooltip will generate a tooltip based on the target element's `data-title` attribute. Tooltip can be configured to open in a specific direction by setting the `direction` key at initialization: ```javascript $("a").tooltip({ direction: "top" }); ``` ```markup Tooltip Target ``` ### Delay A delay can be set to avoid accidental tooltips: ```javascript $("a").tooltip({ delay: 500 }); ```