Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="draggable anchor tag">
<link href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="draggable">Draggable DIV</div>
  <div class="draggable">
    <a href="" draggable="false">Draggable A</a>
  </div>
</body>
</html>
 
.draggable {
  margin: 10px;
  display: block;
  width: 200px;
  background: #fafafa;
  color: #333;
  text-decoration: none;
  height: 40px;
  border: 1px solid #eaeaea;
  line-height: 40px;
  text-align: center;
  cursor: move;
  border-radius: 20px;
}
.draggable a {
  color: inherit;
  text-decoration: inherit;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
bowofolafpro
0viewers