Office and Browsers

Properly Validate TextArea Length (IE vs. Firefox)

Let’s consider this example, where HTML page has a TEXTAREA and an INBOX.  When user types inside TextArea, Inbox should show the length of TextArea string. <script type=”text/javascript”> function TTLength(objTT){ var tt= document.getElementById(‘TXT1’); tt.value = objTT.value.length; } </script> <textarea onKeyDown=”TTLength(this);” onKeyUp=”TTLength(this);” rows=”10″> This Text Area Contains a string With Newline […]
Ideas

How NOT to use your TODO

This post is a reaction to another post that complains that TODO list jails you in an endless loop of struggle with your own TODO list. Here are  simple rules to follow to free yourself from the jail of your TODO:   -1- Set the expectations right Till your last hour, […]