JSFiddle - React, Tailwind, and code Playground

by yijiang

HTML

<img id="captcha" src="http://www.seewhosoutthere.com/captcha" alt="" />

JavaScript

$('#captcha').click(function() {
    $('#captcha').attr('src', function() {
        return this.src.substring(0, this.src.indexOf('?q=') + 3) + new Date().getTime();
    });
});