JSFiddle - React, Tailwind, and code Playground

HTML

<div class="blue"></div>

CSS

.blue{
	position:absolute;
	top:100px;left:10px;
	width:500px;height:500px;
	background-color:blue;
}

JavaScript

$(function(){
  $(".blue").click(function() {
      $(this).animate({left: $(this).position().left+100}, 500);  
  });
})