JSFiddle - React, Tailwind, and code Playground

by GMK Hussain

HTML

<div class="random">I'm One</div>
<div class="random">I'm Two</div>
<div class="random">I'm Three</div>
<div class="random">I'm Four</div>

CSS

.random{
    font-size:64px;
    text-align:center;
}

JavaScript

var random = Math.floor(Math.random() * $('.random').length);
$('.random').hide().eq(random).show();