Tagged Questions
3
votes
1answer
97 views
we choose to use tables to layout web forms: (how) can we make them valid/accessible?
we are building a site with dozens of very complex forms and we decided that the best solution for us is to make them using <table>
but we are worried about accessibility and standards.
what i ...
3
votes
2answers
170 views
HTML5 <form> autocomplete Attribute
What is the point of the autocomplete attribute? Isn't it bad practice to tell your users how their browser should work to fill a form?
1
vote
3answers
701 views
input type=“email”
I have a form where I ask for email addresses. Usually I'd use
<input type="email" ...>
but I want to allow a user to type foo rather than foo@mycompany.com in the (likely) case that they ...
3
votes
2answers
2k views
Why doesn't autofocus=“autofocus” work in Mozilla Firefox?
<INPUT TYPE=TEXT NAME="Gw" MAXLENGTH="225" size="42" autofocus="autofocus">
If I try this with Google Chrome it works. I just want to highlight a form without <script>.
Why doesn't it ...
