| Author: surya 07 Jul 2008 | Member Level: Gold | Rating:  Points: 1 |
could you please send me more details or send me screen shot of ur page
|
| Author: Ebenezer 08 Jul 2008 | Member Level: Silver | Rating:  Points: 0 |
hi
give some more Detail ...
regards
|
| Author: kunal badgujar 08 Jul 2008 | Member Level: Gold | Rating:  Points: 4 |
hi.. try following code...
<script type ="text/javascript"> function test() { alert ("Hi"); } </script>
<body> <form id="form1" runat="server"> <div> <input onblur ="test();" id ="DSD" tabindex="1" /> <asp:TextBox ID="ss" runat="Server" tabindex="2"> </div> </form> </body>
|
| Author: Arun K 15 Jul 2008 | Member Level: Gold | Rating:  Points: 4 |
See this code it is for onblur and onfocus for the HTML TextBox
<input name="Name" type="text" id="Name" class="input-box" value="name" onfocus="if (this.value == 'name') { this.value=''; }" onblur="if (this.value == '') { this.value='name'; }" />
Regards: Arun K .NET Developer http://aruninnice.blogspot.com/ Bangalore Do not forget to Rate the post...
|