$('img:last').prependTo(document.body);
/* * @title rotate images * @description $('img:last').prependTo(document.body); * @include http://* * @license MIT License * @require jQuery */ setInterval(function() { $('img:last').prependTo(document.body); }, 20);