I tried to click and drag a photo or image and place on the kitten image, it didnt change but redirect me to the link of the image. How can i fix that? The code is supposed to let the image change instead of redirect me to the link.
<!DOCTYPE html>
<html>
<head>
<title>Drag and Drop</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script>
function dragStart(jQueryEvent) {
// Store URL
var dataTransfer = document.getElementsByTagName('img');
jQueryEvent.dataTransfer.setData('Text', dataTransfer);
// photo being dragged and dropped with <img> tag and set the photo.
}
function dragOver() {
return false; // Indicates that the element can be dropped onto
}
function drop(jQueryEvent) {
// Update image and text box
jQueryEvent.preventDefault();
var dataTransfer = jQueryEvent.originalEvent.dataTransfer;
document.getElementsByTagName('img').innerHTML = jQueryEvent.dataTransfer.getData('Text');
}
</script>
</head>
<body>
<input type="text" style="width: 300px" value="http://placekitten.com/320/240" /><br />
<img src="http://placekitten.com/320/240" style="border: 1px solid grey; min-width: 50px; min-height: 50px; display: inline-block;" />
</body>
</html>