JSFiddle - React, Tailwind, and code Playground

by sc0rp10

HTML

<div class="banner">
    drag me!
</div>
<iframe src="http://d3.ru" frameborder="0" width="1024px" height="800px"></iframe>

CSS

.banner {
    width: 240px;
    height: 400px;
    background-color: #ebacca;
    position: absolute;
}

JavaScript

$(function() {
    $(".banner").draggable()
})