![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I am |
#3
| ||||||
| ||||||
|
|
I am getting an HTML error on my page that I'm having trouble tracking down. I'd like to emphasize that I am _not_ asking someone to tell me exactly what is wrong with my specific HTML in this case. I'm trying to determine a good technique for finding my own problem through skillful debugging techniques. |
|
Line 109, Column 60: document type does not allow element "SELECT" here; missing one of "P", "H1", "H2", "H3", "H4", "H5", "H6", "PRE", "DIV", "ADDRESS" start-tag . |
|
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. |
|
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>"). |
|
Line 117, Column 6: end tag for "FORM" which is not finished . /form>Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p The messages are referring to a very simple form that is situated on my page. Here's the code: ================================================== ================ 108. <form action="*" enctype="text/plain" name="StyleChoices" 109. <select name="Style" size="1" onChange="Change_Style(this);" 110. <option value="0">Original</option 111. <option value="1">Green on White</option 112. <option value="2">Yellow on Magenta</option 113. <option value="3">Green on Blue</option 114. <option value="4">Blue on Salmon</option 115. <option value="5">Black on Grey/Patterned</option 116. </select 117. </form ================================================== ================ I am confident that there is nothing wrong any part of the form itself. |
|
Can anyone suggest techniques that will help me track down what is wrong elsewhere on the page? |
![]() |
| Thread Tools | |
| Display Modes | |
| |