test NamePhoneHTML// Replace 'your_field_name' with the actual field name that contains the datavar formData = document.querySelector('[name="Name-1"]').value;var qrCodeUrl = "https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=" + formData; // Create an image element for the QR code and append it to the "qr-code" divvar qrCodeImage = document.createElement("img");qrCodeImage.src = qrCodeUrl;document.getElementById("qr-code").appendChild(qrCodeImage);Send Message