Build jQuery UI Tooltip - Forms in JavaScript

Description

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

Example


<!-- Revised from demo code on http://jqueryui.com/ -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Tooltip - Forms</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" />
<!--from   ww  w .  j a v a  2 s . c o m-->
<style>
label {
display: inline-block; width: 5em;
}
fieldset div {
margin-bottom: 2em;
}
fieldset .help {
display: inline-block;
}
.ui-tooltip {
width: 210px;
}
</style>
<script>
$(function() {
var tooltips = $( "[title]" ).tooltip();
$( "<button>" )
.text( "Show help" )
.button()
.click(function() {
tooltips.tooltip( "open" );
})
.insertAfter( "form" );
});
</script>
</head>
<body>

<form>
<fieldset>
<div>
<label for="firstname">Firstname</label>
<input id="firstname" name="firstname" title="Please provide your firstname.">
</div>
<div>
<label for="lastname">Lastname</label>
<input id="lastname" name="lastname" title="Please provide also your lastname.">
</div>
<div>
<label for="address">Address</label>
<input id="address" name="address" title="Your home or work address.">
</div>
</fieldset>
</form>

<div class="demo-description">
<p>Use the button below to display the help texts, or just focus or mouseover the indivdual inputs.</p>
<p>A fixed width is defined in CSS to make the tooltips look consistent when displayed all at once.</p>
</div>
</body>
</html>

Click to view the demo

The code above generates the following result.

Build jQuery UI Tooltip - Forms 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...