• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

PHP or other web langs...

Al Neri

Diamond Member
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.
 
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'
 
Back
Top