| Navn: | |
| Adresse: | |
| Tlf.nr: | |
|
<script type="text/javascript"> /* Created by: Ben Kanaev :: http://www.webhostreview.biz */ function blinkExecute(target,color){ document.getElementById(target).style.backgroundColor = color; } function blinkBlink (target){ color1 = "#feff6f"; // blinking color color2 = "#ffffff"; // background color setTimeout('blinkExecute("'+target+'","'+color1+'")',0); setTimeout('blinkExecute("'+target+'","'+color2+'")',500); setTimeout('blinkExecute("'+target+'","'+color1+'")',1000); setTimeout('blinkExecute("'+target+'","'+color2+'")',1500); setTimeout('blinkExecute("'+target+'","'+color1+'")',2000); setTimeout('blinkExecute("'+target+'","'+color2+'")',2500); setTimeout('blinkExecute("'+target+'","'+color1+'")',3000); setTimeout('blinkExecute("'+target+'","'+color2+'")',3500); setTimeout('blinkExecute("'+target+'","'+color1+'")',4000); setTimeout('blinkExecute("'+target+'","'+color2+'")',4500); document.getElementById(target).focus(); } </script> |
|
<table align="center"><tr><td> Navn:</td> <td><input id="name" type="text"></td> </tr><tr> <td>Adresse:</td> <td><input id="address" type="text"></td> </tr><tr> <td>Tlf.nr:</td> <td><input id="phone" type="text"></td> </tr><tr> <td colspan="2" align="center"> <input type="button" value="Submit" onClick="alert('Virker ikke, kun test.');blinkBlink('name')"> </td></tr></table> |