Click here to Skip to main content
15,887,335 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi guys
i am using a tooltip
its works complete but when on radiobutton and (written text sideby textbox all are hidden when onblur(lostfocus))

my code is here...

javascript ==>

XML
<link href="tooltip/tooltip-generic.css" rel="stylesheet" type="text/css" />
   <script src="tooltip/js/jquery.tools.min.js" type="text/javascript"></script>


   <script>
       // execute your scripts when the DOM is ready. this is a good habit
       $(function () {

           // select all desired input fields and attach tooltips to them
           $("#form1 :input").tooltip({

               // place tooltip on the right edge
               position: "center right",

               // a little tweaking of the position
               offset: [-2, 10],

               // use the built-in fadeIn/fadeOut effect
               effect: "fade",

               // custom opacity setting
               //opacity: 0.7
               opacity: 1

           });
       });
   </script>



<form id="form1" runat="server">
XML
<asp:TextBox ID="txtaboutme" runat="server" onkeyup="Count(this.id)" CssClass="textarea" TextMode="MultiLine" title="Write few lines about yourself are."></asp:TextBox>

</form>
Posted

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