Skip to content

Instantly share code, notes, and snippets.

@inquisitivequin
Last active August 29, 2015 14:21
Show Gist options
  • Save inquisitivequin/33612a80a8273e34fe55 to your computer and use it in GitHub Desktop.
Save inquisitivequin/33612a80a8273e34fe55 to your computer and use it in GitHub Desktop.
test1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://jquery-ui-1.11.4/jquery/ui.js"></script>
<style>
#draggable {
width: 30px;
height: 30px;
background-color: #0af71d;
}
</style>
</head>
<body>
<div id="draggable" class="ui-widget-content"><h1>Drag</h1></div>
<script>
$("draggable").draggable();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment