JSFiddle - React, Tailwind, and code Playground

by aanred

HTML

<div id="box" style="background:Lavender;color:Blue;width:200px;height:50px;">BOX</div>
<div id="result" style>RESULT</div>
<button id="btn">Click Me!!!</button>

JavaScript

$('#btn').click(function(){
    style = $('#box').attr('style');
    $('#box').attr('style', '');
    $('#result').attr('style', style);
    console.log(style);
});