Written for IPB1.3 / invisionfree
also hate those posts with only 1 word or something, with this code people their posts will need at least (any number here) characters before they can be posted
Original request:
http://phantom-designs.net/index.php?showtopic=9843 Quote:
<script>
/*minimum characters per post
by godkillah from phantom-designs.net*/
var MinimumCharacters=15
var Message="Your post requires at least 15 characters"
if(location.href.match(/act=Post/i)){
document.forms.REPLIER.onsubmit=function(){
characters=document.forms.REPLIER.Post.value.lengt h
if(characters<MinimumCharacters){
alert(Message)
return false
}else{
return true
}}}
</script>
|
tested in Firefox