Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Onclick function image 1 - image 2
Only_samurai are u sure i need to acces value ? Wouldn't it be supposed to be document.getElementById("image").src="new image.jpg"; No offence. and for the changing image i would do this
<script type='text/javascript'> function Mouseover() { document.getElementById("img").src="new image.jpg"; } function Mouseout() { document.getElementById("img").src="old image.jpg"; } </script> <img src='old image.jpg' alt='' onMouseover='Mouseover()' onMouseout='Mouseout()'>
Ok hope that helps u.