<script> $(function(){ console.log("popopopo"); // init href logo $("#logo").attr("href", '{{ path("front_index") }}'); // init logo $.ajax({ type: 'POST', url: '{{ path("recup_logo_navbar") }}' }) .done(function(msg){ console.log("aa"); console.log(msg.identite); console.log(msg.identite.logo); $("#logo").html('<img src="/docs/logo/'+msg.identite.logo+'" alt="logo '+msg.identite.nom+'" width="227" />'); }); });</script>