Skip to content

Instantly share code, notes, and snippets.

@erelado
Created June 7, 2022 14:05
Show Gist options
  • Save erelado/e6ffe5a37ece6aeccbf6a34cff8ed4de to your computer and use it in GitHub Desktop.
Save erelado/e6ffe5a37ece6aeccbf6a34cff8ed4de to your computer and use it in GitHub Desktop.
WhatsApp Web: Chat with an unknown number

Function

const openChat = phone => {
  const link = document.createElement("a");
  link.setAttribute("href", `whatsapp://send?phone=${phone}`);
  document.body.append(link);
  link.click();
  document.body.removeChild(link);
};

Example usage

openChat('972501234567')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment