I have already append the JQuery value to the select option but I want to append value to an input field, any solutions?
Select option:
<select name="c_email" class="form-control" ></select>
JQuery value append:
$('select[name="c_email"]').append('<option value="'+ value +'">'+ value +'</option>');
Instead of drop down select I want the value here in input field:
<input type="email" class="form-control" name="c_email" placeholder="">