Good morning from Missouri!!!
I just signed up with HTMLHelp.com this morning after battling a coding issue for an hour. I am trying to group like terms in a drop down box and separate them using '---------------' values. Here's an example of what the drop down box would look like:
Database
Table
View
-----------------
Element
File
Record
IDMS
-----------------
Program
Copybook
Using HTML, can you mask the '--------------------' values so that they are not clickable for selection? So that they are for display purposes only? Here's my code:
<table>
<form method="post" action="resultsMetaData.do" name="form1" onSubmit="showProcessing();">
<tr>
<td align=center><label for="searchtype">Search Type</label></td>
<td align=center><label for="searchterm">Search Term</label></td></tr>
<tr>
<td><SELECT NAME="searchtype">
<OPTION>Database</OPTION>
<OPTION>Table</OPTION>
<OPTION>View</OPTION>
<OPTION>---------------</OPTION>
<OPTION>Element</OPTION>
<OPTION>File</OPTION>
<OPTION>Record</OPTION>
<OPTION>IDMS</OPTION>
<OPTION>---------------</OPTION>
<OPTION>Program</OPTION>
<OPTION>Copybook</OPTION>
<OPTION>Record Copybook</OPTION>
<OPTION>---------------</OPTION>
<OPTION>Glossary</OPTION>
</SELECT></td>
<td><input type="text" name="searchterm" size="20" maxlength="255" value="" />
</td>
<td><input type="submit" name="submit1" value="Search"></td>
</tr>
</form>
</table>
Any help would be appreciated! I'm looking through manuals now also. And we all know how exciting that can be.... HA!
