Is there a simple way to change the default option selected in a layout menu? Here is the menu, and I have a variable caled "size" that the user can change, was just wondering if I could make "size" the default.
Quote:
<form mehtod="get" action="test.asp">
<select title="Select a Font Size" name="fontsize" id="FontSize" style="width:75px" class="layoutMenu">
<option value="10px">10px</option>
<option value="11px">11px</option>
<option value="12px" selected>12px</option>
<option value="13px">13px</option>
<option value="14px">14px</option>
<option value="15px">15px</option>
<option value="16px">16px</option>
<option value="17px">17px</option>
<option value="18px">18px</option>
<option value="19px">19px</option>
<option value="xx-large">extra Large</option>-->
</select>
<input type="submit" value="GO TO IT!">
</form>
|