JSFiddle - React, Tailwind, and code Playground

by tyage

HTML

<a href="http://jsfiddle.net/tyage/x1gubd26/">visited</a>

CSS

body {
    position: relative;
}
a {
    color: blue;
    position: absolute;
    display: block;
    top: 50px;
}
a.transparent {
    color: transparent;
}
a:visited, a.transparent:visited {
    color: red !important;
}

JavaScript

$(function() {
    var chars = ['', '_'], i
    for (i = 0; i < 10; ++i) {
        chars.push(i.toString())
    }
    for (i = 'a'.charCodeAt(0); i <= 'z'.charCodeAt(0); ++i) {
        chars.push(String.fromCharCode(i))
    }
    chars.forEach(function(a) {
//        chars.forEach(function(b) {
//            chars.forEach(function(c) {
                var username = a
                $('<a>').attr('href', 'https://analytics.twitter.com/user/' + username + '/tweets').text(username).appendTo(document.body).css('top', '100px')
//            })
//        })
    })
    setTimeout(function() {
        $('a').addClass('transparent')
    }, 1000)
})