I have this on a SharePoint page:
<a href="#top"
onmouseover="document.getElementById('myimage6').src='LOCATION OF BUTTON IMAGE';"
onmouseout="document.getElementById('myimage6').src='LOCATION OF BUTTON IMAGE';" >
<img src="LOCATION OF BUTTON IMAGE" id="myimage6" />
</a>
This works fine for a mouse over button, but of course when I click on it, it doesn't do anything. Can someone alter the above to make the button go to google.com or something?
I apologise for perhaps not using the correct code blocking, but it's quite unclear to me. I have removed markdown around the a and /a at the start and end.
Thanks.
C