WhatsApp send message with form function
...
//Join text with WhatsApp API
let url = `https://api.whatsapp.com/send?phone=${PHONE_NUMBER}&text=%20${textToSend}`
//Open WhatsApp App
window.open(url, "-blank")
Access the file app.js
Client: JavaScript Vanilla