-
Make an alternate form to register for nanny taxes and increase state tax revenue
Ah, the nanny tax. Some quick Google searches show a range of 80 to 95% of people who are obligated to pay the nanny tax, simply don’t. (NYTimes, ParentDish.com) That’s a pretty whopping statistic. As I’ve been finding out, it would certainly be easier to just skip it. This past summer I hired a nanny…
-
HTML form fields that, when not selected, do not even send a field name upon submit
Checkboxes and radio buttons that have not been checked and multiple select lists that have no selection submit nothing upon submission of the form. It’s as though they aren’t even there. At first, this may seem obvious (Well, yeah, you didn’t select them, dummy!), except that it runs counter to every other form field. If…
-
Revision: Using Javascript to add instructive text for input and textarea form fields
OUTDATED POST: HTML5’s placeholder attribute creates the behavior that this javascript did. Just use the placeholder attribute. This is a code update to a prior post. The Javascript I had posted earlier fell short in one important arena: when you submitted the form without entering your own text, the form would send in the instructive…
-
Using Javascript to add instructive text for input and textarea form fields
OUTDATED POST: HTML5′s placeholder attribute creates the behavior that this javascript did. Just use the placeholder attribute. UPDATE 2008-04-13: This code has been refactored. Please view the updated posting. Over the last year or so, I’ve worked on a number of websites where I wanted to add instructive text to form fields, but didn’t want…