JSFiddle - React, Tailwind, and code Playground

HTML

<input type="radio" name="slider" id="slide1">
<input type="radio" name="slider" id="slide2">
<input type="radio" name="slider" id="slide3">
<input type="radio" name="slider" id="slide4">
<input type="radio" name="slider" id="slide5">

JavaScript

$(document).ready(function () {
    $('input[name=slider]').each(function (index) {
        var $this = $( this );
        setTimeout( function() {
            $this.prop('checked', true);
        }, 500 * index );
    });
});