jQuery(document).ready(function() { jQuery.ajax({ type: "POST", url: 'https://go.preturiwow.ro/send_stats.php', data: { 'event': 'page_view', 'url' : window.location.href }, success: function(msg){ } }); jQuery('[data-event]').click(function(){ var event = jQuery(this).attr("data-event"); var event_value = jQuery(this).attr("data-event-value"); var event_product = jQuery(this).attr("data-event-product"); jQuery.ajax({ type: "POST", url: 'https://go.preturiwow.ro/send_stats.php?v=1726861061', data: { 'event': event, 'event_value': event_value, 'event_product': event_product, 'url' : window.location.href }, success: function(msg){ } }); }); });