(function(){
var path = window.location.pathname || "";
if (path.indexOf("merci-pour-votre-demande-de-contact") === -1) return;
var p = new URLSearchParams(window.location.search);
var d = {
nom: p.get("nom") || "",
tel: p.get("tel") || "",
email: p.get("email") || "",
prestation: p.get("prestation") || "",
msg: p.get("message") || ""
};
if (!d.nom && !d.tel && !d.email) return;
function esc(s){ var div=document.createElement("div"); div.textContent=s; return div.innerHTML; }
var row = function(label, val){
if (!val) return "";
return ""+label+" : "+esc(val).replace(/\\n/g," ")+"
";
};
var html = "" +
"
Récapitulatif de votre demande " +
row("Nom", d.nom) +
row("Téléphone", d.tel) +
row("Email", d.email) +
row("Prestation souhaitée", d.prestation) +
row("Message", d.msg) +
"";
function inject(){
if (document.getElementById("rb-merci-recap")) return;
var heads = document.querySelectorAll("h1, h2, h3, h4");
var anchor = null;
for (var i=0; i