GIJGO
Run Example
Close Window
<!DOCTYPE html> <html> <head> <title>Draggable plugin</title> <meta charset="utf-8" /> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="https://unpkg.com/gijgo@1.9.14/js/gijgo.min.js" type="text/javascript"></script> <link href="https://unpkg.com/gijgo@1.9.14/css/gijgo.min.css" rel="stylesheet" type="text/css" /> <style type="text/css"> .element { border: 1px solid #999; width: 200px; height: 200px; cursor: move; text-align: center; background-color: #DDD; } </style> </head> <body> <div class="element">drag me</div> <script> $('.element').draggable(); </script> </body> </html>