Skip to content

Instantly share code, notes, and snippets.

@dayvsonlima
Created May 22, 2020 22:10
Show Gist options
  • Save dayvsonlima/0ae17691087dd993bb529aabfdb6a419 to your computer and use it in GitHub Desktop.
Save dayvsonlima/0ae17691087dd993bb529aabfdb6a419 to your computer and use it in GitHub Desktop.
whatsapp messsage form
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<a href="https://wa.me/5581981220466/?text=urlencodedtext" id="link">Ligue para o Bred</a>
<textarea name="" id="message" cols="30" rows="10" placeholder="Digite aqui sua mensagem top da balada"></textarea>
<script>
var message = document.querySelector("#message");
var link = document.querySelector("#link");
message.addEventListener("change", function(e) {
var text = encodeURIComponent(message.value);
link.setAttribute('href', `https://wa.me/5581995850590/?text=${text}`);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment