This is my landing page code
<script src="https://api.teknkl.com/fbcounter_v1/counter/count/rightsincrisis2022?public-api-key=pub:7dg94imnvki356fb7m4sb8g5&cb=counter_function">
</script>
<script>
function counter_function(current){
var counterMax= 5000;
counter_count = current.count;
var CountMax = counterMax;
var CuValue = current.count;
var PerCount =(100 *CuValue) /CountMax;
jQuery('.progress-bar').css({"width": +PerCount+"%"});
</script>
... View more