JSFiddle - React, Tailwind, and code Playground

by zeroskillz

HTML

<a href="#" class="one">One</a>
<a href="#" class="two">Two</a>
<span>some text to move around</span>

CSS

.mymargin{
    margin-right:-345px;
}

span{
    margin-left:345px;
}

JavaScript

$(document).ready(function(){
    $( ".one" ).click(function() {     
        $('.two').toggleClass('mymargin');
    });
});