$(document).on('click', '#btn-cp-search', retournerCommuneParCP); function retournerCommuneParCP() { var cp = $("#searchCommuneCP").val(); var request = $.ajax({ url: "api/Commune/SelectionnerParCP/"+cp, method: "GET" }); request.done(function(data) { $("#revendeur-choix").toggleClass("d-none d-block"); $.each(data, function(k,v) { $("#choix-option").append(""); }); }); request.fail(function(response) { $("#ajax-echec").append("Impossible de trouver une commune avec ce code postal...").slideDown("slow").delay(2500).slideUp("slow"); setTimeout(function() { $("#ajax-echec").text(""); }, 5000); }); };