PHP or other web langs...

Al Neri

Diamond Member
Jan 12, 2002
5,680
1
81
i have an image, is it easy to, upon mouseover make it replace it with text (in the same size frame as the image), then mouse-not-over replace the graphic again?


i would have it replace with a graphic but its dynamic text.
 

Drakkon

Diamond Member
Aug 14, 2001
8,401
1
0
use a div tag and with javascript hide/show the areas as necessary
 

itachi

Senior member
Aug 17, 2004
390
0
0
doesn't have to be div.. with tables, you can do..

var table = document.getElementById("table");
if(table.style.display == 'none') table.style.display = "inline";
else table.style.display = "none";

with div, you use style.visiblity instead with 'hidden' and 'visible'