hai
i created an drop down list with optgroup tag.i need to select the
whole group at one click is it possible.i am attaching the code for your
better understanding
<SELECT name="discount" >
<OPTION selected label="none" value="none">None</OPTION>
<OPTGROUP value="level1">
<OPTION value="1">1</OPTION>
<OPTION value="1">1</OPTION>
<OPTION value="1">1</OPTION>
</OPTGROUP>
<OPTGROUP value="level2">
<OPTION value="2">2</OPTION>
<OPTION value="2">2</OPTION>
<OPTION value="2">2</OPTION>
</OPTGROUP>
</SELECT>
i wrote the above code.if i select level1 i need to get all the three
option tag values.is it possible
bye