Jump to content

Mouseover Disply of Text


vikraman

Recommended Posts

  • 2 weeks later...

Sorry, but you need to be much more clear with what it is that you're asking, before anyone can suggest anything. I got that you wanted something about a mouseover event, so far (with what you've given me) I can only show you the code below. <script>

mouseover(){
document.getElementById("image").src="blue.bmp";

}mouseout(){

document.getElementById("image").src="red.bmp";

}
</script><img id="image" onmouseover="mouseover();" onmouseout="mouseout();" /> Hope it helps.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...