JSFiddle - React, Tailwind, and code Playground

by tomprogramming

HTML

<div class="pannable_image" style="width:400px;"><img src="http://sp.reddit.com/obeyFinal.jpg" style="width:50%;" /><div class="buttons">Buttons go here</div></div>

<button id="unwrap">Unwrap image</button>

JavaScript

$("#unwrap").click(function(){
var $img = $("img");
    console.log($img.width(), $img.height());
    var pannableImage = $img.closest('.pannable_image');
                                     pannableImage.replaceWith($img);
});