Skip to content

Instantly share code, notes, and snippets.

@vishalarora91
Last active February 5, 2021 19:20
Show Gist options
  • Save vishalarora91/236e3eaafe1069e796e85fa4a5f2113d to your computer and use it in GitHub Desktop.
Save vishalarora91/236e3eaafe1069e796e85fa4a5f2113d to your computer and use it in GitHub Desktop.
$walink = $('#h5b_whatsapp_chat a');
$web_link = 'https://web.whatsapp.com/send?text='+window.location.href+'%0A%0A'+$walink.data('message')+'&phone='+$walink.data('number');
$api_link = 'https://api.whatsapp.com/send?text='+window.location.href+'%0A%0A'+$walink.data('message')+'&phone='+$walink.data('number');
if('ontouchstart' in document.documentElement){
$walink.attr("href", $api_link);
}else{
$walink.attr("href", $web_link);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment