Mochkit JavaScript DHTML





    
        Drag and Drop Sortable Tables with MochiKit
        
        
h1 {
    font-size: 2em;
    color: #4B4545;
    text-align: center;
}
#dnd_sortable {
  margin: 0;
  margin-top: 10px;
  padding: 0;
  list-style-type: none;
  width: 250px;
}
#dnd_sortable li {
    margin: 0;
    margin-bottom: 4px;
    padding: 5px;
    border: 1px solid #888;
    cursor: move;
    text-align: center;
}
        
        
        
        
        
        
        
    
    
        


            Drag and Drop Sortable Tables with MochiKit
        


        


            View Source: [
                index.html 
            ]
        


        
            
  • mochibot.com

  •             
  • pythonmac.org

  •             
  • undefined.org

  •             
  • python.org

  •         
            


                Validate order choice
            



    MochiKit.Sortable.Sortable.create('dnd_sortable');
    validate = function () {
        var children = MochiKit.DOM.getElement("dnd_sortable").childNodes;
        var res = '';
        for (var i = 0; i < children.length; i++) {
            res += children[i].firstChild.nodeValue + ' ';
        }
        alert(res);
    }