JSFiddle - React, Tailwind, and code Playground

by Trifan Alexandru

HTML

<img src="http://i.telegraph.co.uk/multimedia/archive/01622/nasa_1622185c.jpg" class="FULL" />
<div class="group-of-buttons">
  <button class="one">One</button>
  <button class="two">Two</button>
</div>

JavaScript

$('.one').on('click', function () {
    console.log('ok');
    var img = $('img.FULL');
    img.remove();
    img.insertBefore('.group-of-buttons');
});
$('.two').on('click', function () {
    console.log('ok2');
    var img = $('img.FULL');
    console.log(img);
    img.remove();
    img.insertAfter('.group-of-buttons');
});