I'm new to HTML programming, so I'm not sure how to do this...I've managed to load up a map using 'src=' and then using 'DIV' and the 'CSS2 style position' element to put little red dots on the map. What I would like to do is dynamically make the red dots either visible or invisible without reloading the image from the server
Originally posted by russ3ell What I would like to do is dynamically make the red dots either visible or invisible without reloading the image from the server
All the dots, or just some of the dots? Which image, the dot or the map?
document.getElementById("dot1").style.visibility='visible';
document.getElementById("dot1").style.visibility='hidden';
depending on current status of the visibility.
Bookmarks