My page is created dynamically with asp.net 2.0. I add tool tips to a few input fields and I add them by attaching them to an img using the the onmouseover and onmouseout. The result is like so..
Code: Select all
<img onmouseover="showtip('<b>First Name</b><br>This is a required field')" onmouseout="popdown" src="Images/questionNotePad.gif" style="border-width:0px;" />
1. The tips never change their text value. I have to go to a menu, then back to a different tip before I can get the text to change. The only way I can seem to get them to change is if I move to a milonic menu item (changing focus to an input tag doesn't work).
2. The tip won't go away. If I click anywhere, move the mouse 1/2 way across the page, the tip re-appears. (and re-appears and re-appears)..
TIA
Bill