Skip to content

Instantly share code, notes, and snippets.

@Khodl
Last active January 2, 2017 08:26
Show Gist options
  • Save Khodl/bd6f9b9eb3f08cd496db to your computer and use it in GitHub Desktop.
Save Khodl/bd6f9b9eb3f08cd496db to your computer and use it in GitHub Desktop.
Whatsapp share button
// Hide if not Android or iOS (and not iPod or iPad)
(function(){
var isIos = ((navigator.userAgent.match(/Android|iPhone/i) && !navigator.userAgent.match(/iPod|iPad/i)) ? true : false);
if(! isIos){
var v = document.getElementsByClassName('.share-whatsapp') ;
for(var j in v){
if(v[j].style)
v[j].style.display = 'none';
}
}
})()
<!-- Link to whatsapp -->
<a href="whatsapp://send?text=your%20text\nhttp://your-url.com" class="share-whatsapp">Whatsapp share</a>
@AnkitaPatil94
Copy link

when i click on share button whatsapp should open. how to do ?

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