Forum Moderators: open

Message Too Old, No Replies

Help with validation

         

jimshu79

2:50 pm on Apr 6, 2004 (gmt 0)

10+ Year Member



Error: an attribute specification must start with a name or name token

1)
Line 68, character 1088:
... rea rows="5" cols="40" input type="text" size="20" name="Que ...

The highlighted portion of this is the "type" after input....i'm kind of confused about this error...

2)
then i get:

Error: INPUT is not a member of a group specified for any attribute

Line 68, character 1093:
... ows="5" cols="40" input type="text" size="20" name="Question ...

3)
Line 68, character 1105:
... ="40" input type="text" size="20" name="Questions_Comments"> ...
^Error: there is no attribute SIZE for this element (in this HTML version)

DrDoc

3:04 pm on Apr 6, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Looks like you forgot the ending and starting angle brackets...

... rea rows="5" cols="40"><input type="text" size="20" name="Que ...

Unless, of course, the element is a textarea (which it seems to be), in which case you'd be better of doing something like:

... rea rows="5" cols="40" name="Que ...

jimshu79

4:42 pm on Apr 6, 2004 (gmt 0)

10+ Year Member



Sweet...that did it. thank you!