Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <script src="https://code.jquery.com/jquery-3.1.0.js"></script>
</head>
<body>
  <h2>Drag and Drop</h2>
  <p>Drag the image back and forth between the two div elements.</p>
  
  <div class="container-drop">
    <div id="div1" ondrop="drop(event)" ondragover="allowDrop(event)">
      <img src="/imagens/img_cod/924081810.gif" draggable="true" ondragstart="drag(event)" id="drag1" width="88" height="31">
    </div>
    <div id="div2" ondrop="drop(event)" ondragover="allowDrop(event)">
        <img src="/imagens/img_cod/924081810.gif" draggable="true" ondragstart="drag(event)" id="drag2" width="88" height="31">
    </div>
    <div id="div3" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
  </div>
  
  <div id="result">
    
  </div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers