Show tooltip to alert for text input

Description

The following code shows how to show tooltip to alert for text input.

Example


<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.5.2.js'></script>
<link rel="stylesheet" type="text/css"
  href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css">
<script type='text/javascript'
  src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
<style type='text/css'>
.tooltip {<!-- www.j a v a2 s. co m-->
  margin-left: 22%;
}
</style>
<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){
$('.tooltip').hide();
$('.tooltip').each( function() {
    $(this).prev().focus( function() {
        $(this).nextAll('.tooltip').show('fast');
    }).blur( function() {
        $(this).nextAll('.tooltip').hide('fast');
    });
});
});//]]>  
</script>
</head>
<body>
  <div data-role="page" data-theme="b" id="jqm-home">
    <div data-role="content">
      <div>
        <label for="telephone"> Phone Number* </label> 
        <input type="text" name="telephone" id="telephone" required placeholder="Telephone#">
        <div name="telephone_tooltip" class="tooltip">
          Valid format <strong> 
          <span>999-999-9999</span>
          </strong>. Please include the area code.
        </div>
      </div>
    </div>
  </div>
</body>
</html>

Click to view the demo





















Home »
  jQuery Mobile »
    Example »




Button
Button Event
Button Icon
Button Text
Checkbox
Collapsible
Date
Dialog
Event
Footer
Form
Header
Icon
Input
Layout
Listview
Listview Divider
Listview Item
Loader
mobile_settings
Navbar
Page
Page Event
Popup
Radio
Select
Slider
Switch
Textarea
Theme