I have a relatively simple webpage and I cannot get the table to work correctly. I have an input field, serialnumber, and an html/javascript drop-down checkbox. When I take out the table everything works fine including the drop-down block -- except nice web formatting. Once I put in the table the webpage freezes up including the dropbox not working. I presume the issue is the placement of tr, /tr, and /table. Here is the code with the table included and causes the error,
<div class="col contentHome">
<h3>New Gateway</h3>
<form>
<table>
<tr><td>Gateway Serial Number:</td><td><input type="text"
name="serialnumber" required/></td></tr>
<div class="multiselect">
<div class="selectBox" onclick="showCheckboxes()">
<tr><td>Gateway Properties</td><td><select><option>Select an
option</option></select></td></tr>
<div class="overSelect"></div>
</div>
<div id="checkboxes">
<label for="one"><input type="checkbox" id="DG" />Dash Gateway</label>
<label for="two"><input type="checkbox" id="DC" />Dash Controller</label>
<label for="three"><input type="checkbox" id="SG" />Steering Gateway</label>
<label for="three"><input type="checkbox" id="SC" />Steering Controller</label>
<label for="three"><input type="checkbox" id="BC" />BoomHieght Controller</label>
</div>
</div>
</table>
<br>
<input type="submit" value="Create" />
<input type="hidden"
name="${_csrf.parameterName}"
value="${_csrf.token}"/>
</form>
</div>
Here is a snapshot of the webpage. As you can see the formatting is correct but I am missing the "Create" button and the drop-down box does not work.
Any ideas on the placement of the table, tr, td, /td, /tr, and /table"?
