|



Member of:
ISOC
IWA
ARTT
RTS
| |
Building an Interactive Site
No need to piece it together. Our Web Tools Package includes
six tools to make a web site interactive. Chat room, message board, discussion
lists/newsletters, web calendar, FAQs, polls, more. Unlimited users. No ads.
Customizable. Superior Support.
Read before Submit
Here is a handy little script we found that you can use on your website forms.
Adding this script requires your visitor to click a check box before the submit
button is made available for clicking. There are many uses for this script, and
it would make a great addition to any webmaster's toolbox.
This part of the script goes in the head area of the webpage:
This part of the script is located in the body of your html page and forms part
of the form you are having your visitor agree to.
<form name="okay" onSubmit="return iagree(this)">
In this area you would include the regular contents of your form.
<input name="agreebox" type="checkbox" onClick="isubmit(this)">
This would be whatever statement you wish to indicate that they agree by
checking this box.
<input type="Submit" value="Submit!" disabled>
</form>
<script>
//change the names "okay" and "agreebox" to match the names in your form
document.forms.okay.agreebox.checked=false
</script>
| |

|