JSFiddle - React, Tailwind, and code Playground
JavaScript
function method(_data) {
setTimeout(function () {
$('body').css('background', _data);
}, 5000);
}
$(function () {
method('red');
method('blue');
});
function method(_data) {
setTimeout(function () {
$('body').css('background', _data);
}, 5000);
}
$(function () {
method('red');
method('blue');
});