Build jQuery UI Tooltip - Default functionality in JavaScript

Description

The following code shows how to build jQuery UI Tooltip - Default functionality.

Example


<!-- Revised from demo code on http://jqueryui.com/ -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Tooltip - Default functionality</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<!--  w w w  .  j a  v  a  2  s .  c  om-->
<script>
$(function() {
$( document ).tooltip();
});
</script>
<style>
label {
display: inline-block;
width: 5em;
}
</style>
</head>
<body>

<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
<a href="http://themeroller.com" title="ThemeRoller: jQuery UI's theme builder application">ThemeRoller</a>
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>

<div class="demo-description">
<p>Hover the links above or use the tab key to cycle the focus on each element.</p>
</div>
</body>
</html>

Click to view the demo

The code above generates the following result.

Build jQuery UI Tooltip - Default functionality in JavaScript
Home »
  Javascript Tutorial »
    jQuery UI »
      Tooltip
Javascript Tutorial Tooltip
Build jQuery UI Tooltip - Custom Styling in...
Build jQuery UI Tooltip - Custom animation ...
Build jQuery UI Tooltip - Custom content in...
Build jQuery UI Tooltip - Default functiona...
Build jQuery UI Tooltip - Forms in JavaScri...
Build jQuery UI Tooltip - Track the mouse i...
Build jQuery UI Tooltip - Video Player demo...