Show hide message for text input
Description
The following code shows how to show hide message 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>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!-- w ww . j a v a 2 s .com-->
$('.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>