Last active
May 25, 2022 12:08
-
-
Save dantetesta/3c87db5bb5a7f9772cb724b13cf5b28d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*BY: ASK JARVIS + DANTE TESTA */ | |
function enviarMensagem(){ | |
var celular = "5519998021956"; | |
var texto = "Texto que eu vou enviar \n com quebras de \n texto."; | |
texto = window.encodeURIComponent(texto); | |
window.open("https://api.whatsapp.com/send?phone=" + celular + "&text=" + texto, "_blank"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment