From 9ec4c4e682946b4480b5366aabf3bcf353ef49f9 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 31 Mar 2010 20:19:09 +0200 Subject: [PATCH] Tooltip: Two more demos showing mousetracking with open/close events and using open/close methods to programmatically show/hide tooltips --- demos/tooltip/forms.html | 69 +++++++++++++++++++++++++++++++++++++ demos/tooltip/tracking.html | 65 ++++++++++++++++++++++++++++++++++ 2 files changed, 134 insertions(+) create mode 100644 demos/tooltip/forms.html create mode 100644 demos/tooltip/tracking.html diff --git a/demos/tooltip/forms.html b/demos/tooltip/forms.html new file mode 100644 index 000000000..626161d6e --- /dev/null +++ b/demos/tooltip/forms.html @@ -0,0 +1,69 @@ + + + + jQuery UI Tooltip - Default demo + + + + + + + + + + + + + +
+ +
+
+
+ + + ? +
+
+ + + ? +
+
+ + + ? +
+
+
+ +
+ + + +
+ +

Hover the questionmark-buttons or use the button below to display the help texts all at once. Click again to hide them.

+ +
+ + + + + diff --git a/demos/tooltip/tracking.html b/demos/tooltip/tracking.html new file mode 100644 index 000000000..9af4d0d09 --- /dev/null +++ b/demos/tooltip/tracking.html @@ -0,0 +1,65 @@ + + + + jQuery UI Tooltip - Default demo + + + + + + + + + + + + +
+ +

Tooltips can be attached to any element. When you hover + the element with your mouse, the title attribute is displayed in a little box next to the element, just like a native tooltip. +

+

But as it's not a native tooltip, it can be styled. Any themes built with + ThemeRoller + will also style tooltip's accordingly.

+

Tooltip's are also useful for form elements, to show some additional information in the context of each field.

+

+

Click the field to see the tooltip; when you tab out of the field, it gets hidden.

+ +
+ + + +
+ +

Here the tooltips are positioned relative to the mouse, and follow the mouse while it moves above the element.

+ +
+ + + + + -- 2.39.5