<html>
<head>
<title>System Drag And Drop Example</title>
<script type="text/javascript">
function handleDragDropoEvent(oEvent) {
switch(oEvent.type) {
case "dragover":
oEvent.returnValue = false;
break;
}
}
</script>
</head>
<body>
<P>Try dragging the text in the textbox to the right textbox.</p>
<P><input type="text" value="drag this text" ondragstart="handleDragDropoEvent(event)" />
<input ondragenter="handleDragDropoEvent(event)"
ondragover="handleDragDropoEvent(event)"
ondrop="handleDragDropoEvent(event)">
</input>
</p>
</body>
</html>
|