JSFiddle - React, Tailwind, and code Playground

by rvaldez

HTML

<div></div>

CSS

div{
    display:block;
    width:200px;
    height:200px;
    background:red;
    top:0px;
    position:fixed;
}

JavaScript

$(document).ready(function(){

    $('div').click(function(){
        $(this).css({"top":"100px"});
        
    });
    
});