JSFiddle - React, Tailwind, and code Playground
by ainop
JavaScript
var bigpicture = document.getElementById('bigpicture');
var preload_dummy = new Image();
preload_dummy.onload = function () {
bigpicture.setAttribute('src', src);
};
$('.onesm').on('click', 'a img', function (e) {
var img = this.getAttribute('src').match(/\/(.*)$/);
if (img) {
e.preventDefault();
bigpicture.setAttribute('src', '/themes/i/grey.gif');
preload_dummy.src = '/uploads/big/' + img[0];
}
});