I am struggling with a form element. I like to have a options dropdown menu, but with an extra textfield input.
something like
<select name="gateway_code" id="gateway_code">
<option value="">---------</option>
<option value="ideal">Cash</option>
<option value="paypal">PayPal</option>
<option value="creditcard">Credit Card (Visa, Mastercard)</option>
</select> or
Vouchercode <input type="text" id="gateway_code" name="gateway_code" value""/>
How can i make this?
regards