Skip to content

Instantly share code, notes, and snippets.

@yask123
Created January 24, 2015 17:08
Show Gist options
  • Save yask123/d085d4b7a486d00dd103 to your computer and use it in GitHub Desktop.
Save yask123/d085d4b7a486d00dd103 to your computer and use it in GitHub Desktop.
Send messages on whatsapp by Javascript
document.getElementsByClassName("input")[1].innerHTML="This message was written via JS script! "; // Fills the text box message
var input = document.getElementsByClassName("icon btn-icon icon-send");//Grabs the send button
input[0].click();// Clicks the send button
@a4amin
Copy link

a4amin commented Mar 24, 2021

How to send with media ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment