Guest User

Untitled

a guest
Jun 21st, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. Mouseover effect to change a center div when mousing over other divs
  2. <html>
  3. <head>
  4. <title>Detecting browser close in IE</title>
  5. <script type="text/javascript">
  6. function changeImg()
  7. {
  8. document.getElementById("image").src="new image location here";
  9. }
  10.  
  11. </script>
  12. </head>
  13. </script>
  14. </head>
  15. <body >
  16. <div align="center">
  17. <img src="imagelocation here" alt="myclass" id="image" />
  18. </div>
  19. <div id="div2" align="left" onmouseover="changeImg()">
  20. Drag Ur mouse to change image
  21. </div>
  22.  
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment