Horje

Example of Doing the Drop - ondrop

index.html
Example: HTML
<script>
function drop(ev) {
  ev.preventDefault();
  var data = ev.dataTransfer.getData("text");
  ev.target.appendChild(document.getElementById(data));
}
</script>

Output should be:

Example of Doing the Drop - ondrop




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Drag and Drop API
Uploaded by:
Admin