Last active
January 2, 2017 08:26
-
-
Save Khodl/bd6f9b9eb3f08cd496db to your computer and use it in GitHub Desktop.
Whatsapp share button
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
// 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'; | |
} | |
} | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
when i click on share button whatsapp should open. how to do ?