
jQuery(document).ready(function() {

    jQuery('a').live("click", function(event) {
            if(jQuery(this).hasClass('count')) {
                jQuery.ajax({
                    dataType: 'html',
                    type: 'POST',
                    url: 'custom-content/linkcount.php',
                     data: ({
                        url: jQuery(this).attr('href')
                     })
                });
            }
    });

});