$(document).ready(function() {
    $('a[href^="tel:"]').on('click',function(){
        data = {
            type : 1,
            href : $(this).attr("href"), 
            url: window.location.href
        };
        $.post( "/ajax/istatistik", data, function( data ) {
        });        
    });
    $('.wws-popup__send-btn, a[href^="https://wa.me"], a[href^="https://api.whatsapp.com"]').on('click',function(){
        data = {
            "type" : 2,
            "href" : $(this).attr("href"), 
            "url": window.location.href
        };
        $.post( "/ajax/istatistik", data, function( data ) {
        });        
    });    
});