Quote:
Originally Posted by Lynne
It would automatically be a link to wherever you link to in your <a> tag.
|
Great, thanks! Now I'm trying to put a different button when I hover over it. I'm using this:
hoversrc=" pic.gif "
right after img src is done
However, no luck.
--------------- Added [DATE]1252607656[/DATE] at [TIME]1252607656[/TIME] ---------------
Well...I gave this a whirl, but still no dice:
<SCRIPT language="javascript1.1">
gifHome = new Image(54,18)
gifHome.src = "home.gif"
gifHome2 = new Image(54,18)
gifHome2.src = "home2.gif"
function changeImg(cImg,ref) {
document.images[cImg].src = ref.src
}
</SCRIPT>
<a href=url onMouseOver=”changeImg(‘imgHome’ ,gifHome2)” onMouseOut=”changeImg(‘imgHome’ ,gifHome)”><img src="file"
border="0" name=”imgHome” alt="$vboptions[bbtitle]" ></a>