1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
$('#AjaxSelect1').change(
function() {
var idSecteur = $('#AjaxSelect1 option:selected').val();
var DATA = 'idSelect=' + idSelect;
if(idSelectr !== '-1') {
$.ajax({
type: 'POST',
url: "{{ path('mon contrôler symfony2')}}",
data: DATA,
success:
function(response) {
$.each(response, function(index, value) {
$('#AjaxSelect2').append($("<option></option>").attr("value", index).text(value));
});
$("#AjaxSelect2 option[value=-1]").attr('selected','selected');
}
});
return (false);
};
}
); |