Apologies, but no results were found. Perhaps searching will help find a related post.
Talk to a Designer
function sendWhatsApp(){
var name = document.getElementById("name").value; var phone = document.getElementById("phone").value; var email = document.getElementById("email").value; var location = document.getElementById("location").value;
if(name=="" || phone=="" || email=="" || location==""){ document.getElementById("error").innerHTML="Please fill all fields first"; return; }
var message = "New Interior Enquiry%0A%0A" + "Name: " + name + "%0A" + "Phone: " + phone + "%0A" + "Email: " + email + "%0A" + "Location: " + location;
var url = "https://wa.me/919868714714?text=" + message;
window.open(url, "_blank");
}