$(document).ready(function () {
$('.leftImage').append('');
$('.whts > a').click(function () {
if (windowidth > 768) {
var site = window.location.href;
window.open("https://web.whatsapp.com/send?phone=905312233966&text=" + site + "")
} else {
var socialAppMessage = encodeURIComponent(productDetailModel.productName) + " - " + encodeURIComponent(window.location.href);
window.location.href = "whatsapp://send?phone=905312233966&text=" + socialAppMessage;
}
});
});