|
<BUTTON ...>NAME = "text string"NAMENAME
NAMEgo that has blinking text:
<FORM ACTION="/cgi-bin/mycgi.pl"
METHOD=POST
NAME="myform">
email: <INPUT NAME="email">
<BUTTON NAME="go" TYPE="submit"><STRONG>Go!</STRONG></BUTTON>
</FORM>
<SCRIPT TYPE="text/javascript">
<!--
function blinker()
{
if (document.forms.myform.go.style.color == 'blue')
document.forms.myform.go.style.color='red';
else
document.forms.myform.go.style.color='blue';
setTimeout('blinker()',500);
}
blinker()
//-->
</SCRIPT>
which gives us
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of the Open Content License and the Open Publication License. Contents may be redistributed or republished freely under these terms so long as credit to the original creator and contributors is maintained.