JSFiddle - React, Tailwind, and code Playground

by Purag Moumdjian

HTML

<div id="range">
    <img src="http://img1.loadtr.com/k-483417-Map_of_the_World.gif" id="map" />
</div>

CSS

#range {
    width:400px;
    height:400px;
    overflow:hidden;
    border:1px solid black;
}

JavaScript

jQuery(document).ready(function() {
    jQuery("#map").draggable(); 
});