Jump to content

Can't get my <input> tags to validate!?


chiprivers

Recommended Posts

I am pulling my hair out with this one!

 

I am validating my page as XHTML 1.0 Strict and it keeps throwing up errors with my <input> tags.  The validator says:

 

document type does not allow element "input" here; missing one of "p", "h1", "h2", "h3", "h4", "h5", "h6", "div", "pre", "address", "fieldset", "ins", "del" start-tag

 

The section of the script for the form is:

 

<form id="status_updater" action="/eas/FF_WEEKLY.PHP?" method="get">
<input id="su_ff" name="su_ff" type="hidden" />
<input id="su_starttimestamp" name="su_starttimestamp" type="hidden" />
<input id="su_endtimestamp" name="su_endtimestamp" type="hidden" />
</form>

 

Can anybody tell me what I need to do to get rid of the errors?  The error is being displayed for each <input> tag in the form.

Link to comment
Share on other sites

Inputs have to be in Divs (or something else). A form tag alone doesn't cut it. Use this:

 

<form id="status_updater" action="/eas/FF_WEEKLY.PHP?" method="get">
  <div>
     <input id="su_ff" name="su_ff" type="hidden" />
     <input id="su_starttimestamp" name="su_starttimestamp" type="hidden" />
     <input id="su_endtimestamp" name="su_endtimestamp" type="hidden" />
  </div>
</form>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.