textbox + tooltip
Web Development
3
Posts
3
Posters
0
Views
1
Watching
-
in aspx page in asp.net2.0 on textbox i want tooltip text in javascripting. Please can anyone tell me how.
There various ways in resolving this issue. --- go to www.dynamicdrive.com and look for tool tips javascript sample. --- textboxes in visual studios has tooltip properties. use it and it will wrk.
-
in aspx page in asp.net2.0 on textbox i want tooltip text in javascripting. Please can anyone tell me how.
I think so this will help you to resolve your issue an Exp. is here Write down some text in TextBox and Click On link It'll change tool tip for Text box what Text you entered in Text Box JavaScript Function: function HelloToolTip(v){ document.getElementById(v).title = document.getElementById(v).value; } Html Code Here:
rup