Hi all,
I am using the following Java Code to hide and display images. Right now the "myList" is an <img ID="myList">. How do I select ALL the images?
I am asking because, I am outputing threw XSLT and there are many different images, depending on the XML imput.
I am looking for a line that will display all. This will only display the img with ID="MyList"
Code:
<SCRIPT LANGUAGE="JScript">
function showMe() {
MyList.style.display = "";
}
</SCRIPT>
Thanks,
Bones