Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1.  
  2. <html>
  3. <body>
  4.  
  5. <img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="smiley.gif" alt="Smiley" width="32" height="32">
  6.  
  7.  
  8. <script>
  9. function bigImg(x) {
  10. x.style.height = "64px";
  11. x.style.width = "64px";
  12. }
  13.  
  14. function normalImg(x) {
  15. x.style.height = "32px";
  16. x.style.width = "32px";
  17. }
  18. </script>
  19.  
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement