T
Thomas 'PointedEars' Lahn
Attribute values that contain the character `%' have to be delimited by
double quotes or apostrophes in HTML. As there are more exceptions than
this one, it is a good idea to delimit attribute values this way always.
http://www.w3.org/TR/REC-html40/intro/sgmltut.html#h-3.2.2
http://validator.w3.org/
Actually that doesn't matter in SGML applications as the first attribute
value is properly delimited by `"'. It may only be possible that there is a
tag-soup parser (which is not Gecko's or IE's, I have tested those negative)
that can't handle this properly and falsely error-corrects to
maxlength="32name"
Giving a form control the name "name" could be a problem, though.
PointedEars
double quotes or apostrophes in HTML. As there are more exceptions than
this one, it is a good idea to delimit attribute values this way always.
http://www.w3.org/TR/REC-html40/intro/sgmltut.html#h-3.2.2
http://validator.w3.org/
[...]
Small typo there.
I doubt it will solve your problem, but you misplaced the space between
maxlength="32"name ="name".
Actually that doesn't matter in SGML applications as the first attribute
value is properly delimited by `"'. It may only be possible that there is a
tag-soup parser (which is not Gecko's or IE's, I have tested those negative)
that can't handle this properly and falsely error-corrects to
maxlength="32name"
Giving a form control the name "name" could be a problem, though.
PointedEars