How do I display form controls, such as select boxes and others in a row in jquery, and display them vertically?
<label for="select-choice-0" class="select">Shipping method:</label> <select name="select-choice-0" id="select-choice-1"> <option value="standard">Standard: 7 day</option> <option value="rush">Rush: 3 days</option> <option value="express">Express: next day</option> <option value="overnight">Overnight</option> </select> <label for="select-choice-2" class="select">Shipping method:</label> <select name="select-choice-2" id="select-choice-2"> <option value="standard">Standard: 7 day</option> <option value="rush">Rush: 3 days</option> <option value="express">Express: next day</option> <option value="overnight">Overnight</option> </select>
I do not want them to be in the same field with data type = "horizontal". Thanks
source share