mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
67d49f593b
creating the tooltip element on the fly, never reusing it. Use aria-describedby attribute to find the associated tooltip again. Allows customizing animations much easier (just replace fadeIn/fadeOut), still open. Updated demos and visual test to replace now-missing .widget() method. Added tooltipClass for that.
23 lines
603 B
HTML
23 lines
603 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>jQuery UI Tooltip Demos</title>
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
|
|
<div class="demos-nav">
|
|
<h4>Examples</h4>
|
|
<ul>
|
|
<li class="demo-config-on"><a href="default.html">Default functionality</a></li>
|
|
<li><a href="forms.html">Forms with tooltips</a></li>
|
|
<li><a href="tracking.html">Track the mouse</a></li>
|
|
<li><a href="custom-animation.html">Custom animation</a></li>
|
|
<li><a href="delegation-mixbag.html">Delegation Mixbag</a></li>
|
|
<li><a href="lots.html">Lots</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|