According to the official documentation , you can use .prepend()
:
$('#lider_id').prepend("<option value='1' >Josh_reder</option>");
Also, I would recommend you use the following syntax:
let $option = $('<option />', {
text: 'Josh_reder',
value: 1,
});
$('#lider_id').prepend($option);
Demonstration code:
$('#prepend').on('click', function () {
let $lider_list = $('#lider_id option');
$('#lider_id').prepend($('<option />', {
text: 'I: Líder ' + ($lider_list.length + 1),
value: $lider_list.length + 1,
}));
});
$('#append').on('click', function () {
let $lider_list = $('#lider_id option');
$('#lider_id').append($('<option />', {
text: 'F: Líder ' + ($lider_list.length + 1),
value: $lider_list.length + 1,
}));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select id="lider_id">
<option value="1">Líder 1</option>
</select>
<button id="prepend">Añadir al inicio</button>
<button id="append">Añadir al final</button>