JSFiddle - React, Tailwind, and code Playground

by timmah

HTML

<!-- Paste HTML template code with desired number of slides here, then hit 'Run' -->

JavaScript

var counter = 1;
$('h4').each(function() {    
    $text = $(this).text().replace('XX', counter);
    $(this).text($text)
    counter++
})