Posted by l3d aka Spoof on Sat 19 Sep 17:54
report abuse | download | new post
- <html>
- <head>
- <script type="text/javascript">
- function mouseOver(){
- b1.src="image.jpg";
- }
- function mouseOut(){
- b1.src="image2.jpg";
- }
- function flash(){
- while(1==1){
- var t=setTimeout("mouseOut()",500);
- var t=setTimeout("mouseOver()",500);
- }
- }
- </script>
- </head>
- <body>
- <img border="0" alt="Visit W3Schools!"
- src="3.jpg" name="b1"
- onmouseOver="mouseOver()"
- onmouseOut="mouseOut()" />
- <input type="button" value="Click me!"
- onclick="flash()" >
- </body>
- </html>
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.