topical media & game development
professional-javascript-13-SystemDragAndDropExampleA.htm / htm
<html>
<head>
<title>System Drag And Drop Example</title>
<script type="text/javascript">
function handleDrop() {
alert("Dropped!");
}
</script>
</head>
<body>
<p>Highlight some of the text in the textbox on the left and drag it
into the textbox on the right.</p>
<input type="text" value="drag this text" /><input type="text" ondrop="handleDrop()" />
</body>
</html>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.