Code: Show/Hide Random Spam
Announcements Trash Talk Zone Junk Zone Hosting This should go here, with zone junk. Subgame General Questions Rewrite the description to make it clear that if you don't know where to post then this is the forum. Bot Questions ASSS ASSS General Help Rename ASSS Questions, as that name doesn't really cut it Module Help New Forum. Name says it all. Completed Custom Modules Custom code posts should be dumped here. ASSS Bugs Mapping and Graphics LVZ/LVL Questions I might split maps and lvz, too Tools A seperate forum for tools would be nice, so we don't have to go looking through misc apps. Independent Coding General Coding We seem to need it, as trash talk has become this Chat Clients Rename chatnet to be more general. Some misc apps may deserve to go here. Misc User Apps |
Dr Brain wrote: |
Now, why quick reply needs javascript... I don't know. |
Code: Show/Hide function checkForm() {
formErrors = false; document.post.message.value = ''; if (document.post.input.value.length < 2) { formErrors = 'You must enter a message when posting'; } if (formErrors) { alert(formErrors); return false; } else { if (document.post.quick_quote.checked) { document.post.message.value = document.post.last_msg.value; } document.post.message.value += document.post.input.value; return true; } } |