Hi,
Any body know how to apply mouse over effect in textbox value . In that text box value i need close button also. Thank you
Printable View
Hi,
Any body know how to apply mouse over effect in textbox value . In that text box value i need close button also. Thank you
[ moved ]
For future reference, this is a client-side issue, not a server-side problem.
So you want to change the value of a textbox onmouseover...
Code:<input type="text" name="test_name_1" id="test_id_1" onmouseover="this.value='MOUSE OVER!!!'" />
Do you want something like a tooltip over your text box?