fed up of people repeatingly pressing the send button causing spam? here is one ways how you can stop it.
instead of using the normal send button, ( <input type="submit" value="send"> ) you can use this.
<script type="text/javascript">function disable() {document.getElementById("post").disabled=true}; </script>
<input type="submit" value="send" id="post" onclick="disable()"> this disables the button so it can only be clicked once.
also if it is disabled the person can still click (a) or enter to use the send button. to stop this you type <script type="text/javascript">function key(event){if (event.keyCode==13) {alert("anti spam protection! (do not press the a button) refreshing
";) window.location="COMMENT BOX/CHAT ROOM URL"}}</script>
<input type="submit" value="send" onkeydown="key(event)"> so the full code is..
<script type="text/javascript">function disable(){getElementById("post ").disabled=true}; function key(event) {if (event.keyCode==13) {alert("anti spam protection! (do not press the a button) refreshing" window.location="CHAT BOX/CHAT ROOM URL"}}</script>
<input type="submit" value="send" id="post" onclick="disable()" onkeydown="key(event)"> hope I solved your spam problems ;D
-a.smith