2010-04-08 21:21:47 +00:00
<!doctype html>
< html lang = "en" >
< head >
2011-05-28 00:52:13 +00:00
< meta charset = "utf-8" >
2015-09-30 13:11:22 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2011-05-28 00:52:13 +00:00
< title > jQuery UI Tooltip - Track the mouse< / title >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2011-05-28 00:52:13 +00:00
< link rel = "stylesheet" href = "../demos.css" >
< style >
label {
display: inline-block;
width: 5em;
}
< / style >
2015-07-01 03:46:05 +00:00
< script src = "../../external/requirejs/require.js" > < / script >
< script src = "../bootstrap.js" >
2012-09-10 15:33:46 +00:00
$( document ).tooltip({
2012-06-13 23:02:11 +00:00
track: true
2010-04-08 21:21:47 +00:00
});
< / script >
< / head >
< body >
2011-05-28 00:52:13 +00:00
< p > < a href = "#" title = "That's what this widget is" > Tooltips< / a > 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.< / p >
< p > But as it's not a native tooltip, it can be styled. Any themes built with
2024-04-25 21:53:11 +00:00
< a href = "https://jqueryui.com/themeroller/" title = "ThemeRoller: jQuery UI's theme builder application" > ThemeRoller< / a >
2011-05-28 00:52:13 +00:00
will also style tooltips accordingly.< / p >
< p > Tooltips are also useful for form elements, to show some additional information in the context of each field.< / p >
< p > < label for = "age" > Your age:< / label > < input id = "age" title = "We ask for your age only for statistical purposes." > < / p >
< p > Hover the field to see the tooltip.< / p >
2010-04-08 21:21:47 +00:00
< div class = "demo-description" >
2014-04-24 11:50:24 +00:00
< p > Here the tooltips are positioned relative to the mouse, and follow the mouse while it moves above the element, using the < code > track< / code > option.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2010-04-08 21:21:47 +00:00
< / body >
< / html >