JSFiddle - React, Tailwind, and code Playground

by Darby Rathbone

HTML

<img id='i' src="http://www.kandrive.org/cameras/cam213509120.jpg?1" alt="">

JavaScript

var img = document.getElementById('i');
setTimeout(function e() {
  img.src = "http://www.kandrive.org/cameras/cam213509120.jpg?" + Math.random();
  setTimeout(e,1000);
}, 1000)