Skip to content

Instantly share code, notes, and snippets.

@iamso
Created November 18, 2016 12:51
Show Gist options
  • Save iamso/ec6a59ee3884a745c88f162c558dafb6 to your computer and use it in GitHub Desktop.
Save iamso/ec6a59ee3884a745c88f162c558dafb6 to your computer and use it in GitHub Desktop.
<style>
html:not(.is-phone) .whatsapp-link {
display: none;
}
</style>
<a class="whatsapp-link" href="whatsapp://send?text=url-encoded-text-goes-here">
Share with Whatsapp
</a>
<script>
;(function(navigator, document) {
var isPhone = /(iPhone)|android.*(?=mobile)/gi.test(navigator.userAgent);
document.documentElement.classList.toggle('is-phone', isPhone);
})(navigator, document);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment