JSFiddle - React, Tailwind, and code Playground

HTML

<div id="kate"></div>

JavaScript

/*
    By @maxx0r 
*/
$(document).ready(function() {
for(i=1;i<=30;i++) {

    $("<img src='http://coedmagazine.files.wordpress.com/2012/12/kate-upton-gif-" + i + ".gif' />").appendTo($("#kate"));;
    }
        });