Hyperlink MouseOver text
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi using asp.net 2.0, i wanted to display some text in Hyperlink mouseover event. any body plz tell me how to do? thanks
Ramana
-
Hi using asp.net 2.0, i wanted to display some text in Hyperlink mouseover event. any body plz tell me how to do? thanks
Ramana
Ok.Take one div and write some text and make this div visible true or false on MouseOver and MouseOut event of Hyperlink. For Example Sample
This is Sample text.
Your Javascript function function display(i) { if(i==0) document.getElementById('myDiv').style.display='block'; else document.getElementById('myDiv').style.display='none'; } please don't forget to vote on the post that helped you.