JSFiddle - React, Tailwind, and code Playground
by igos
HTML
<p class="number_vp">56</p>
<p class="number_vp">2</p>
JavaScript
$(".number_vp").each(function(index,elm) {
$(this).html(Math.round(Math.random()*100000));
});
by igos
<p class="number_vp">56</p>
<p class="number_vp">2</p>
$(".number_vp").each(function(index,elm) {
$(this).html(Math.round(Math.random()*100000));
});