JSFiddle - React, Tailwind, and code Playground
HTML
<!-- Remove jQuery UI or use jQuery 1.7.2 to fix 0 duration on the animation -->
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.22/jquery-ui.js'></script>
<div id='move'><!-- move --></div>
CSS
#move {
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
background: red;
}
JavaScript
$(document).ready(function() {
$('#move').animate({ left: '200px' }, 0);
});