Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dantetesta/3c87db5bb5a7f9772cb724b13cf5b28d to your computer and use it in GitHub Desktop.
Save dantetesta/3c87db5bb5a7f9772cb724b13cf5b28d to your computer and use it in GitHub Desktop.
/*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