const p = new URLSearchParams(window.location.search); if(p.get("from")){ document.write( "" + "🙏 તમને આ આમંત્રણ મળ્યું છે " + decodeURIComponent(p.get("from")) + " તરફથી" ); } તમારું નામ લખો: 📲 WhatsApp પર નામ સાથે શેર કરો 🔗 Invite Link Copy કરો function makeInvite(){ var name = document.getElementById("inviteName").value.trim(); if(!name){ alert("કૃપા કરીને નામ લખો"); return; } var baseUrl = window.location.origin + window.location.pathname; var finalUrl = baseUrl + "?from=" + encodeURIComponent(name); var text = "🕉 શિવ મહોત્સવ માટે તમને ખાસ આમંત્રણ 🙏\n\n" + "આમંત્રણ આપનાર: " + name + "\n\n" + "👇 આમંત્રણ જુઓ:\n" + finalUrl; window.open("https://wa.me/?text=" + encodeURIComponent(text), "_blank"); } function copyInvite(){ var name = document.getElementById("inviteName").value.trim(); if(!name){ alert("કૃપા કરીને નામ લખો"); return; } var finalUrl = window.location.origin + window.location.pathname + "?from=" + encodeURIComponent(name); navigator.clipboard.writeText(finalUrl); document.getElementById("statusMsg").innerHTML = "✅ Link copy થઈ ગઈ છે – હવે share કરો"; }