Comment ajouter l'option Sélectionner dans jQuery
//add option to select with jQuery
$('#selectID').append($('<option>', {
value: 1,
text: 'Option Text'
}));
Grepper