Share Pastebin
Guest
Public paste!

l3d aka Spoof

By: a guest | Sep 19th, 2009 | Syntax: JavaScript | Size: 0.47 KB | Hits: 74 | Expires: Never
Copy text to clipboard
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function mouseOver(){
  5.  
  6. b1.src="image.jpg";
  7. }
  8. function mouseOut(){
  9. b1.src="image2.jpg";
  10. }
  11. function flash(){
  12. while(1==1){
  13. var t=setTimeout("mouseOut()",500);
  14. var t=setTimeout("mouseOver()",500);
  15. }
  16. }
  17. </script>
  18. </head>
  19. <body>
  20. <img border="0" alt="Visit W3Schools!"
  21. src="3.jpg" name="b1"
  22. onmouseOver="mouseOver()"
  23. onmouseOut="mouseOut()" />
  24. <input type="button" value="Click me!"
  25. onclick="flash()" >
  26.  
  27.  
  28. </body>
  29. </html>