Click here to Skip to main content
15,921,959 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to show tool tip on text box mouse over using j query in my asp.net apllication,pleas sujest me answer,
thanks...
Posted

HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>jQuery UI Tooltip - Forms</title>

<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>

.ui-tooltip
{
font-size:10pt;
font-family:Calibri;

}
body
{
font-size:12pt;
padding:10px;
font-family:Calibri;
}

<script type="text/javascript">
$(function() {
$('#txtfName').tooltip({
track: true
});
});
</script>
</head>
<body>
<form id="form1"  runat="server">

User Information

FirstName:
<input id="txtfName" name="firstname" title="Please enter your firstname." />


Lastname:
 <input id="txtlName" name="lastname" title="Please enter your lastname." />


Location:
  <input id="txtLocation" name="address" title="Please Enter Your Location." />


</form>
</body>
</html>
 
Share this answer
 
v2
The below one is a nice Jquery tool tip plug in that I used in my project
http://calebjacob.com/tooltipster/#getting-started[^]
 
Share this answer
 
Comments
Faras Mohsin 10-Apr-13 2:13am    
Thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900