I am very, very new at this. What function and where do I place this function in the code below that will only run once per visit?
<script>
jQuery('.count').each (function () {
jQuery(this).prop('Counter',0).animate({
Counter: jQuery(this).text()
}, {
duration: 4000,
easing: 'swing',
step: function (now) {
jQuery(this).text(Math.ceil(now));
}
});
});
</script>