|
Post by Schubaltz on Jul 3, 2007 22:49:05 GMT -5
Description: Places a field below the textarea on the post page that keeps track of your word use.
Source: Open
Cross-browser: Yes
Global Footer
<script type="text/javascript"> <!-- // Word Count in Posts
if(document.postForm && document.postForm.message) { var i = document.createElement("input"), x = document.postForm.message; i.type = "text"; i.disabled = "disabled"; i.id = "lg"; i.value = "Word Count"; x.parentNode.appendChild(i); document.onkeyup = function() { document.getElementById("lg").value = (x.value ? x.value.match(/\b/g).length / 2 : 0); } } //--> </script>
|
|