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 […]

No Picture
Ideas

Eight days water fasting in Rawdon, Canada

When – from Wednesday, January 29 till February 6, 2020.  Eight nights of water fasting followed by 3 nights of juice fasting. Where – Centre Val-Santé, Rawdon, Canada (about an hour north of Montreal) What – only distilled water and fresh air. What to do – sleep (up to 8-10H […]

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, […]