For example when the mouse is over a text like "EXAMPLE", a text in this case called "EXAMPLE 2" change to "EXAMPLE 3". Something similar to inner html, the difference is that you don't need to click. Excuse my english, I hope you can understand!
Its not that hard, but too bad Im not really gonna write the code but I will point out what you'll need to do.(BTW: this is only one way of doing it.) 1. Put the text you want to change in a div tag. 2. In this div tag add a "mouseover" element that calls a javascript function. 3. Further on, in the javascript function, use a getelemetbyid to be able to write to it. 4. With that value use it with getelementbyid(div tag id).innerhtml= "whatever text you want ". That should be it. . Hope I helped..
go learn javascript, its not difficult; it'll save you time in the future, and won't make you look intellectually lazy; good luck papi.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <head> <title>I can change text =) </title> <style type=text/css> div { font-family: Georgia } </style> </head> <body> <script type=text/javascript> function changetext() { var textchange2 = "This is the new me " ; var id = document.getElementById("DP"); id.innerHTML=textchange2; } </script> <div id="DP" onmouseover="changetext();">Lets say this is text 1</div> </body> </html>