edpatterson
IS-IT--Management
- Feb 24, 2005
- 186
I am trying to duplicate the Nutrition Facts label using HTML. I have the basic layout covered and now want to be able to add a new unit of measure of it is not listed.
I have
the ...new... shows up but not as a link.
Is it possible to embed a link in a select field?
I have
Code:
<tr><td>Serving Size</td>
<td><input type='text' name='servingCount'></td>
<td>
<select name='servingName'>
<option value='Each'>Each</option>
<option value='Bun'>Bun</option>
<option value='Link'>Link</option>
<option value='new'><a href="./newServingName.php">...new...</a></option>
</select>
</td>
<td><input type='text' name='metricCount'></td>
<td><select name='metricName'> <option value='gram'>g</option><option value='mL'>mL</option></select></td>
</tr>
Is it possible to embed a link in a select field?