dsebao
12/21/2017 - 3:13 PM

Index to redirect to Whatsapp web or Whatsapp App via url

<!doctype html>
<head>
	<script type="text/javascript">
		if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
		window.location.href= 'https://api.whatsapp.com/send?phone=+54297XXXXXX&text=Hola';
		} else {
		window.location.href= 'https://web.whatsapp.com/send?phone=+54297XXXXXX&text=Hola';
		}
	</script>
</head>
<center>
<body>
</body>
</center>
</html>