Drag Drop JavaScript Tutorial

< html>
    
        System Drag And Drop Example
        
            function handleDragDropEvent(oEvent) {
                var oTextbox = document.getElementById("txt1");
                oTextbox.value +=  oEvent.type + "\n";
            }
        
    
    
        

Try dragging the text from the textbox to the red square.
        No drop target events fire.


        

Drag me


                     ondragenter="handleDragDropEvent(event)"
             ondragover="handleDragDropEvent(event)"
             ondragleave="handleDragDropEvent(event)"
             ondrop="handleDragDropEvent(event)">