JSFiddle - React, Tailwind, and code Playground

by TJ VanToll

HTML

<link rel="stylesheet" href="http://code.jquery.com/ui/jquery-ui-git.css">
<script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<div class="box"></div>

CSS

.box {
    background: red;
    width: 50px;
    height: 50px;
}

JavaScript

$( ".box" ).position({
    my: "center center",
    at: "center center",
    of: document
});